:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(25, 25, 25, 0.7);
    --gold-primary: #D4AF37;
    --gold-light: #F9E596;
    --gold-dark: #aa8c2c;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    width: 100px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    z-index: 1000;
    background: #000000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 5px 5%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-links a:hover:not(.btn-primary) {
    color: var(--gold-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--text-main);
}

/* Hero Section */
.hero {
    width: 100%;
    aspect-ratio: 16 / 9; /* Adapts height to maintain photo aspect ratio */
    display: flex;
    align-items: flex-end; /* Bottom alignment */
    justify-content: flex-start; /* Left alignment */
    position: relative;
    padding: 0 10% 8% 5%; /* Responsive bottom padding */
    background: url('assets/file_000000003a108207a97d59cceced24ff.jpg') no-repeat center center;
    background-size: cover; /* Fills container while preserving aspect ratio */
    background-color: var(--bg-dark);
    margin-top: 80px; /* Accounts for navbar */
}



/* Products Section */
.products {
    padding: 100px 0;
    background: var(--bg-dark);
}

/* Home Page Products Section Override */
.home-products {
    background: url('assets/ChatGPT Image Aug 20, 2026, 03_45_44 AM.jpg') no-repeat center center;
    background-size: cover;
}
.home-products .section-title {
    color: #FFFDD0; /* Creamy ivory */
    font-size: 3.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 20px;
}
.home-products .section-title::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFFDD0, transparent);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.home-products .section-title::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FFFDD0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 1;
}
.home-products .btn-primary {
    background: #FFFDD0; /* Creamy ivory */
    color: #6B4E00; /* Dark golden bronze for contrast */
    border: none;
    font-weight: 700;
}
.home-products .btn-primary:hover {
    background: #e6e4bc; /* Slightly darker on hover */
    color: #3D2C00;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-grid > div {
    height: 100%;
}

.product-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.product-card {
    background: #17130F;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    height: 100%;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.6s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: perspective(1000px) translateZ(50px) scale(1.08) rotateX(2deg) !important;
    box-shadow: 0 35px 70px rgba(0,0,0,0.9), 0 15px 30px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    z-index: 10;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.product-card h3 {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.series-title {
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #111);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
}


.about-text p {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.15rem;
}

.about-text strong {
    color: var(--gold-light);
    font-weight: 600;
}

.about-text em {
    color: var(--gold-primary);
    font-style: normal;
}

.about-text h3 {
    color: var(--gold-light);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-list li::before {
    content: "•";
    color: var(--gold-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-image-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    background: rgba(25, 25, 25, 0.5);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-gold-shape {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite alternate;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.4);
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: url('assets/ChatGPT Image Aug 20, 2026, 03_45_44 AM.jpg') no-repeat center center;
    background-size: cover;
}

.contact-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0px 2px 5px rgba(0,0,0,0.7);
    margin-bottom: 50px;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: #FFFDD0; /* Creamy ivory */
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #FFFDD0; /* Creamy ivory */
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-list .icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--gold-primary);
    font-style: normal;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form-container {
    flex: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FFFDD0; /* Creamy ivory */
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-submit {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
.reveal-from-top {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.reveal-from-top.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-from-left > * {
    opacity: 0;
    transform: translateX(-100vw);
    transition: opacity 3.5s cubic-bezier(0.22, 1, 0.36, 1), transform 3.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-from-left.active > * {
    opacity: 1;
    transform: translateX(0);
}

.reveal-from-right > * {
    opacity: 0;
    transform: translateX(100vw);
    transition: opacity 3.5s cubic-bezier(0.22, 1, 0.36, 1), transform 3.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-from-right.active > * {
    opacity: 1;
    transform: translateX(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-container, .contact-wrapper {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        padding: 20px 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-section {
        aspect-ratio: auto;
        padding: 120px 0 60px 0;
        background-position: right center;
    }
    
    .about-hero-section::before {
        opacity: 1; /* Dark overlay on mobile to keep text readable */
    }
    
    .about-hero-text {
        max-width: 100%;
        top: 0;
        left: 0;
        padding-right: 0;
        text-align: center;
    }
    
    .about-hero-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
        width: 100px;
    }
}

/* Media Page Styles */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.media-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    aspect-ratio: 4 / 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.exhibition-item {
    aspect-ratio: 16 / 9;
}

.media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border: 2px solid var(--gold-primary);
    border-radius: 4px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--gold-primary);
    text-decoration: none;
    cursor: pointer;
}

/* About Us Hero Section */
.about-hero-section {
    padding: 150px 0 100px 0;
    background: url('assets/file_0000000045ac82118492d19228445d75.jpg') no-repeat center center / cover;
    position: relative;
    aspect-ratio: 4 / 3;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.about-hero-text {
    max-width: 55%;
    margin: 0;
    text-align: left;
    padding-right: 20px;
    position: relative;
    top: -15px;
    left: -30px;
    color: white;
}
