:root {
    --gold: #FFD700;
    --deep-charcoal-black: #1A1A1A;
    --dark-gray: #2C2C2C; /* Slightly lighter than charcoal for cards */
    --light-text: #f0f0f0;
    --medium-gray-text: #a0a0a0;
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-primary);
    background-color: var(--deep-charcoal-black);
    color: var(--light-text);
    line-height: 1.7;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Toast Notification */
.toast {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #2C2C2C; /* --dark-gray */
    color: #f0f0f0; /* --light-text */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(73, 62, 62, 0.3);
    z-index: 1000;
    font-family: var(--font-primary);
    font-size: 14px;
    max-width: 300px;
    border-left: 4px solid #FFD700; /* --gold */
    animation: slideIn 0.5s ease-in-out;
}

.btn-gold:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #d4b700; /* Slightly darker gold for loading state */
}
 .brand-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }



/* Slide-in animation for toast */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Fade-out animation for toast */
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Apply fade-out when toast is hidden */
.toast.hide {
    animation: fadeOut 0.5s ease-in-out forwards;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-gold {
    color: var(--gold);
}

.section-padding {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}

.mt-2 {
    margin-top: 2rem;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95); /* Semi-transparent charcoal */
    backdrop-filter: blur(5px); /* Frosted glass effect */
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--light-text);
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active-link { /* You might add JS to set active link based on scroll */
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--deep-charcoal-black);
    border-color: var(--gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--deep-charcoal-black);
    transform: translateY(-3px);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px; /* Account for fixed header */
    background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80'); /* Replace with your own or a gradient */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax-like effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.hero-content {
    position: relative; /* To sit above overlay */
    z-index: 1;
}

#hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--medium-gray-text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
#about .about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
#about .about-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--medium-gray-text);
}


/* Our Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.brand-card {
    background-color: var(--dark-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.brand-icon-placeholder {
    width: 70px;
    height: 70px;
    background-color: var(--deep-charcoal-black);
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px auto;
}

.brand-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.brand-card .tagline {
    font-style: italic;
    color: var(--medium-gray-text);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.brand-card .description {
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 60px; /* Adjust as needed for consistent card height */
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}
.contact-info p i {
    margin-right: 10px;
    font-size: 1.2rem;
}
.contact-info a {
    color: var(--light-text);
    text-decoration: none;
}
.contact-info a:hover {
    color: var(--gold);
}

.social-icons a {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: var(--dark-gray);
    color: var(--light-text);
    font-family: var(--font-primary);
    font-size: 1rem;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: auto;
}

/* Footer */
#footer {
    background-color: #111; /* Even darker charcoal */
    color: var(--medium-gray-text);
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

#footer p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    #hero h1 {
        font-size: 2.5rem;
    }
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .section-padding {
        padding: 40px 0;
    }
    /* Mobile Navigation */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        width: 100%;
        background-color: var(--deep-charcoal-black);
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        margin: 10px 20px;
        text-align: center;
        display: block; /* Make links full width */
    }
    .mobile-menu-toggle {
        display: block; /* Show hamburger */
    }

    #hero h1 {
        font-size: 2rem;
    }
    #hero p {
        font-size: 1rem;
    }
    .brands-grid {
        grid-template-columns: 1fr; /* Stack cards */
    }
    .brand-card .description {
        min-height: auto; /* Allow natural height on mobile */
    }
    .contact-grid {
        grid-template-columns: 1fr; /* Stack contact info and form */
        gap: 30px;
    }
    .contact-info {
        text-align: center;
    }
    .contact-info .social-icons {
        justify-content: center;
        display: flex; /* Center icons */
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}