/*
Theme Name: Vallant Theme
Description: Custom WordPress theme for Vallant Services and Supplies Corp. - FESTO Official Partner
Version: 1.0
Author: Vallant Services
Text Domain: vallant
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700&display=swap');

/* Import FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

.site-main {
    margin-top: 100px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.3s;
  background: transparent;
}

.site-header.sticky {
  position: fixed;
  background: #fff; /* or your desired color */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #89c1ff;
}

.main-navigation a.active {
    color: #89c1ff;
    font-weight: 600;
    position: relative;
}

.main-navigation a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #89c1ff;
    border-radius: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover {
    cursor: pointer;
}

.btn-primary {
    background: #89c1ff;
    color: white;
}

.btn-primary:hover {
    background: #1e3c72;
    color: white;
}

/* Hero Section */
.hero-section {
    color: #333;
    padding: 150px 0 100px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.hero-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(105deg, #fff 60%, rgba(255, 255, 255, 0.5) 75%, transparent 100%);
}

.hero-image .image-background {
    position: relative;
    height: 100%;
    width: 50%;
    margin-left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Contact Form */
.contact-form {
    padding: 40px;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.site-footer {
    /* background: #2c3e50; */
    background: #89c1ff;
    color: #2d2d2d;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #2d2d2d;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #2d2d2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #2d2d2d;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #89c1ff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: #1e3c72;
}

/* Accordion Styles */
.accordion-toggle {
    display: inline-block;
    padding: 0.5em 1em;
    margin: 0.2em;
    background: var(--primary, #89c1ff);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.accordion-toggle:hover {
    background: var(--secondary, #1e3c72);
}

.accordion-container {
    display: none;
    margin-top: 0.5em;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        /* flex-direction: column; */
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.color-primary { color: #89c1ff; }
.color-secondary { color: #1e3c72; }
.color-tirtiary { color: #125fb4; }
.bg-primary { background-color: #89c1ff; }
.bg-secondary { background-color: #1e3c72; }
.bg-tirtiary { background-color: #125fb4; }
.space { height: 16px; }
.separator { height: 1px; margin: 9px 0; }