:root {
    --primary: #FF6B35;
    --secondary: #004E89;
    --accent: #F77F00;
    --gold: #D4AF37;
    --deep-teal: #1A535C;
    --cream: #FFF8E7;
    --dark: #1a1a1a;
    --light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav.transparent {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav.transparent .logo,
.nav.transparent .nav-link {
    color: var(--light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav.transparent .mobile-menu-btn span {
    background: var(--light);
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--cream);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    font-size: 2rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--primary);
}

/* Pure Art Hero */
.hero-fullscreen {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-nav {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 20;
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 60px;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.8rem;
}

.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    width: 30px;
    border-radius: 5px;
    background: var(--light);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: var(--light);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Collections */
.collections {
    padding: 6rem 3rem;
    background: var(--cream);
}

.collections-container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.collection-card {
    text-decoration: none;
    color: var(--dark);
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
}

.collection-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 83, 92, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-count {
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.collection-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.collection-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* About Statement */
.statement {
    padding: 6rem 3rem;
    background: var(--light);
}

.statement-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.statement-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--dark);
}

.statement-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.statement-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Clean Minimal Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 3rem;
}

.footer-clean {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social {
    flex: 0;
}

.social-icon {
    color: var(--light);
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-contact {
    flex: 1;
    text-align: right;
}

.contact-link {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-link:hover {
    opacity: 1;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1200px) {
    .statement-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-nav {
        right: 1.5rem;
        bottom: 1.5rem;
        padding: 0.5rem;
    }
    
    .hero-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .hero-indicators {
        bottom: 1.5rem;
    }
    
    .scroll-hint {
        font-size: 0.75rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .statement-title {
        font-size: 2.5rem;
    }
    
    .footer-clean {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive Header - Hides on hero, shows on scroll */
.nav.hidden {
    transform: translateY(-100%);
}

/* Collections CTA Button */
.collections-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Logo Image Styling */
.logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Adjust logo size for mobile */
@media (max-width: 768px) {
    .logo {
        height: 40px;
    }
}

/* Footer logo styling */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Logo + Text Navigation Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 50px;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.nav.transparent .logo-text {
    color: var(--light);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo:hover .logo-text {
    color: var(--primary);
}

/* Adjust logo size for mobile */
@media (max-width: 768px) {
    .logo {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
}

/* Footer Logo + Text Styling */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .footer-logo-img {
        height: 45px;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
}

/* Footer Background Fix - Make logo visible */
.footer-clean {
    background: #2c2c2c;
    /* Darker background so orange logo pops */
}

.footer-logo {
    color: #f5f5f5;
    /* Lighter text color */
}

.contact-link {
    color: #e0e0e0;
}

.contact-link:hover {
    color: var(--primary);
}

/* Footer Background Fix - Lighter background for logo visibility */
.footer {
    background: #f8f8f8 !important; /* Light gray instead of dark */
}

.footer-clean {
    background: #f8f8f8;
}

.footer-logo {
    color: var(--dark) !important; /* Dark text for visibility */
}

.footer-contact .contact-link {
    color: #555 !important;
}

.footer-contact .contact-link:hover {
    color: var(--primary) !important;
}

.social-icon {
    color: #555 !important;
}

.social-icon:hover {
    color: var(--primary) !important;
}
