:root {
    --bg-color: #fcfcfc;
    --text-color: #333;
    --accent-color: #Cba135;
    /* Gold-ish accent for elegance */
    --secondary-bg: #f5f5f5;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.divider {
    height: 1px;
    width: 60px;
    background-color: var(--accent-color);
    margin: 1rem auto 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--text-color);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid var(--text-color);
}

.btn:hover {
    background-color: transparent;
    color: var(--text-color);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
}

/* Hero */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url('images/hero-fashion.png');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
    /* Offset for fixed header */
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

#hero h1 {
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

#hero .subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    color: #555;
}

/* About */
#about {
    padding: 6rem 0;
    text-align: center;
    background-color: #fff;
}

#about h2 {
    font-size: 2.5rem;
}

#about p.lead {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

#about p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Brands */
#brands {
    padding: 6rem 0;
    background-color: var(--secondary-bg);
    text-align: center;
}

#brands h2 {
    font-size: 2.5rem;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.brand-card {
    background: #fff;
    padding: 0;
    /* Remove padding to let logo fill */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    flex: 1;
    min-width: 350px;
    max-width: 550px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    /* Ensure rounded corners apply to image */
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.brand-card img {
    height: 400px;
    /* Much larger */
    width: 100%;
    object-fit: cover;
    /* Fill the space */
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.brand-card h3 {
    font-size: 2rem;
    margin: 1.5rem 0 1rem;
    padding: 0 2rem;
}

.brand-card .brand-tagline {
    font-style: italic;
    color: #fff;
    background-color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    display: inline-block;
}

.brand-card p:not(.brand-tagline) {
    background-color: #f0f0f0;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #555;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Products */
#products {
    padding: 6rem 0;
    text-align: center;
    background-color: #fff;
}

#products h2 {
    font-size: 2.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: var(--transition);
}

.product-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.product-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.product-item span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #333;
}

/* Location */
#location {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--secondary-bg);
}

.location-content {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.location-card {
    background: #fff;
    padding: 3rem;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.location-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.location-card h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.location-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.plus-code {
    margin-top: 1rem;
    font-weight: 500;
    color: var(--accent-color) !important;
}

/* Contact & Social */
#contact {
    padding: 6rem 0;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-column {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-column h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Social Buttons */
.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: var(--transition);
}

.social-btn:hover {
    background: #fff;
    border-color: #E1306C;
    /* Instagram Color */
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.1);
}

.social-btn i {
    font-size: 2.5rem;
    color: #E1306C;
}

.social-btn div {
    text-align: left;
}

.social-btn .handle {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.social-btn .desc {
    font-size: 0.9rem;
    color: #777;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.contact-list li i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 30px;
    text-align: center;
}

.contact-list li strong {
    display: block;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-list li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.contact-list li a:hover {
    color: var(--accent-color);
}


/* Minimal Footer */
footer {
    background-color: #1a1a1a;
    color: #777;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Utilities for JS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* Header */
    header {
        padding: 1rem;
    }

    .logo img {
        height: 45px;
    }

    /* Hero */
    #hero {
        height: 80vh;
        margin-top: 70px;
        padding: 2rem 1rem;
    }

    .hero-logo {
        width: 100px;
        margin-bottom: 1.5rem;
    }

    #hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    #hero .subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }

    /* Navigation */
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Sections */
    #about,
    #brands,
    #products,
    #location,
    #contact {
        padding: 3rem 0;
    }

    /* Typography */
    h2 {
        font-size: 2rem !important;
    }

    #about p.lead {
        font-size: 1.1rem;
    }

    /* Brands */
    .brands-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .brand-card {
        min-width: 100%;
        max-width: 100%;
    }

    .brand-card img {
        height: 250px;
        /* Smaller on mobile */
    }

    .brand-card h3 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .brand-card .brand-tagline {
        font-size: 0.8rem;
    }

    .brand-card p:not(.brand-tagline) {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    /* Products */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }

    .product-item {
        padding: 1.5rem 1rem;
    }

    .product-item i {
        font-size: 2rem;
    }

    .product-item span {
        font-size: 1rem;
    }

    /* Location */
    .location-card {
        padding: 2rem 1.5rem;
    }

    .location-icon {
        font-size: 2.5rem;
    }

    .location-card h3 {
        font-size: 1.5rem;
    }

    .location-card p {
        font-size: 1rem;
    }

    /* Contact */
    .contact-grid {
        gap: 2rem;
    }

    .contact-column {
        min-width: 100%;
    }

    .contact-column h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .social-btn {
        padding: 1rem;
        gap: 1rem;
    }

    .social-btn i {
        font-size: 2rem;
    }

    .social-btn .handle {
        font-size: 1rem;
    }

    .social-btn .desc {
        font-size: 0.8rem;
    }

    .contact-list li {
        gap: 1rem;
        padding: 0.75rem 0;
    }

    .contact-list li i {
        font-size: 1.3rem;
    }

    .contact-list li strong {
        font-size: 0.8rem;
    }

    .contact-list li a {
        font-size: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    #hero h1 {
        font-size: 1.8rem;
    }

    #hero .subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 1.7rem !important;
    }

    .brand-card img {
        height: 200px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}