:root {
    --gold: #D4AF37;
    --dark: #1a1a1a;
    --light: #f8f8f8;
    --cream: #F5F5DC;
    --gray: #333;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}
header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.nav-container {
    display: flex;
    justify-content: center;
    list-style: none;
}
.nav-container li { margin: 0 20px; position: relative; }
.nav {
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.nav:hover { color: var(--gold); }
.nav::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: 0; left: 0;
    transition: width 0.3s ease;
}
.nav:hover::after { width: 100%; }

/* About Hero */
.about-hero {
    height: 70vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 70px;
}

.about-hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.about-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.about-hero p {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* Our Story */
.our-story {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-content { flex: 1; }

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
}
.story-content h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--gold);
    bottom: -15px;
    left: 0;
}
.story-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--gray);
}

.story-image { flex: 1; position: relative; }
.story-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 20px 20px 0 var(--gold);
}

/* Our Values */
.our-values {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.values-header {
    text-align: center;
    margin-bottom: 60px;
}
.values-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}
.values-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.value-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.value-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery-section {
    padding: 0 5% 100px;
}
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}
.gallery-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}
.gallery-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.gallery-item {
    height: 250px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Lightbox (new) */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}
.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 5px;
    animation: zoomIn 0.3s ease;
}
.close {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close:hover { color: var(--gold); }
@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    padding: 100px 5%;
    text-align: center;
    color: white;
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--gold);
}
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}
.cta-btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark);
    padding: 15px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--gold);
    text-transform: uppercase;
    font-size: 14px;
}
.cta-btn:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

/* Footer */
.custom-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 5% 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero h1 { font-size: 3.5rem; }
    .our-story { flex-direction: column; }
    .story-image { margin-top: 40px; }
    .story-image img { box-shadow: 15px 15px 0 var(--gold); }
}
@media (max-width: 768px) {
    .nav-container { flex-direction: column; align-items: center; }
    .nav-container li { margin: 10px 0; }
    .about-hero { height: 60vh; min-height: 500px; margin-top: 60px; }
    .about-hero h1 { font-size: 2.8rem; }
    .story-content h2,
    .our-team h2,
    .values-header h2,
    .gallery-header h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }
}
