/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    background: linear-gradient(135deg, #F8F5F2 0%, #EDECE8 50%, #F2EFEA 100%);
    min-height: 100vh;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-nav {
    font-family: 'Montserrat', sans-serif;
}

.font-elegant {
    font-family: 'Cormorant Garamond', serif;
}

.font-classic {
    font-family: 'Crimson Text', serif;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(248, 245, 242, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-family: 'Cormorant Garamond', serif;
    color: #8B4513;
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-family: 'Montserrat', sans-serif;
    color: #A0522D;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: -0.25rem;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: #8B4513;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #DAA520;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #DAA520;
    border-radius: 1px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: #8B4513;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #DAA520;
}

.mobile-nav {
    background: #F8F5F2;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.mobile-nav-content {
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    background: none;
    border: none;
    color: #8B4513;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: left;
    padding: 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #DAA520;
    background: #EDECE8;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(139, 69, 19, 0.4) 0%, 
        rgba(139, 69, 19, 0.2) 30%,
        rgba(0, 0, 0, 0.1) 70%,
        transparent 100%
    );
    z-index: 10;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: #8B4513;
    background-image: url('pics/choices.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: sepia(15%) saturate(85%) brightness(85%) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-card {
    background: rgba(248, 245, 242, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(218, 165, 32, 0.3);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    color: #8B4513;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title-accent {
    color: #DAA520;
}

.hero-description {
    color: #A0522D;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-quote {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-style: italic;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #8B4513;
    color: #DAA520;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgba(139, 69, 19, 0.3);
}

.hero-btn:hover {
    background: #A0522D;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-bg {
    position: absolute;
    inset: -1rem;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 1rem;
    transform: rotate(3deg);
}

.about-img {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: sepia(10%) saturate(90%);
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    color: #8B4513;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.about-title-accent {
    color: #DAA520;
}

.about-text {
    color: #A0522D;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-quote {
    background: #EDECE8;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #DAA520;
}

.about-quote p {
    color: #8B4513;
    font-weight: 500;
    font-style: italic;
}

/* Collections Section */
.featured {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #F8F5F2, #EDECE8);
}

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

.featured-title {
    font-family: 'Cormorant Garamond', serif;
    color: #8B4513;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.featured-title-accent {
    color: #DAA520;
}

.featured-description {
    color: #A0522D;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #F8F5F2;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(139, 69, 19, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid rgba(218, 165, 32, 0.1);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(139, 69, 19, 0.25);
    border-color: rgba(218, 165, 32, 0.3);
}

.feature-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(10%) saturate(90%) brightness(95%);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.08);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 69, 19, 0.1) 70%, rgba(139, 69, 19, 0.3) 100%);
}

.feature-content {
    padding: 1.5rem;
}

.feature-title {
    font-family: 'Crimson Text', serif;
    color: #8B4513;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
}

.feature-year {
    color: #DAA520;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #A0522D;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.feature-btn {
    background: #8B4513;
    color: #DAA520;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

.feature-btn:hover {
    background: #A0522D;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}



/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #EDECE8, #F8F5F2);
}

.contact-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    color: #8B4513;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.contact-title-accent {
    color: #DAA520;
}

.contact-description {
    color: #A0522D;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    background: #F8F5F2;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(218, 165, 32, 0.2);
}

.contact-item i {
    color: #DAA520;
    width: 2rem;
    height: 2rem;
    margin: 0 auto 1rem;
    display: block;
}

.contact-item h3 {
    font-family: 'Crimson Text', serif;
    color: #8B4513;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #A0522D;
}

.contact-social {
    background: #F8F5F2;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(218, 165, 32, 0.2);
}

.contact-social-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-social-header i {
    color: #DAA520;
    width: 1.5rem;
    height: 1.5rem;
}

.contact-social-header h3 {
    font-family: 'Crimson Text', serif;
    color: #8B4513;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.contact-social p {
    color: #A0522D;
    margin-bottom: 1.5rem;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #8B4513;
    color: #DAA520;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    text-decoration: none;
}

.contact-social-btn:hover {
    background: #A0522D;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #8B4513;
    color: #DAA520;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-logo-text p {
    color: rgba(218, 165, 32, 0.8);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    padding-top: 1.5rem;
}

.footer-quote {
    color: rgba(218, 165, 32, 0.8);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: rgba(218, 165, 32, 0.6);
    font-size: 0.875rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #DAA520;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
    padding: 1rem;
    transition: color 0.3s ease;
}

.lightbox-nav:hover {
    color: #DAA520;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-content {
    max-width: 96rem;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.lightbox-image-container {
    flex: 1;
    max-width: 64rem;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    width: 20rem;
    background: #F8F5F2;
    padding: 1.5rem;
    border-radius: 1rem;
}

.lightbox-info h3 {
    font-family: 'Crimson Text', serif;
    color: #8B4513;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

.lightbox-info p {
    color: #A0522D;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lightbox-counter {
    color: rgba(160, 82, 45, 0.7);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 480px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    

    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto 3rem auto;
    }
    
    .lightbox-content {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    

}

/* Focus styles for accessibility */
button:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid #DAA520;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Smooth transitions for all interactive elements */
button,
[role="button"],
a {
    transition: all 0.2s ease-in-out;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}