/* ========== General Styles ========== */
:root {
    --gold: #d4af37;
    --gold-light: #e9c767;
    --gold-dark: #a88a2b;
    --dark: #222;
    --dark-light: #444;
    --gray: #777;
    --light-gray: #f5f5f5;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    /* Brand Identity Colors */
    --brand-gold: #D4AF37;
    --brand-gold-rgb: 212, 175, 55;
    --brand-dark: #121212;
    --brand-dark-rgb: 18, 18, 18;
    --brand-accent: #8A6D3B;
    --brand-light: #F8F4E3;
    --brand-near-black: #0A0A0A;
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-accent: 'Cinzel', serif;
    
    --gold-color: var(--brand-gold);
    --gold-color-rgb: var(--brand-gold-rgb);
    --dark-color: var(--brand-dark);
    --dark-color-rgb: var(--brand-dark-rgb);
    --light-color: var(--brand-light);
    --gray-color: #888;
    --light-gray-color: #f5f5f5;
    --white-color: #fff;
}

/* Hide scrollbar but keep functionality */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100vw;
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.divider {
    display: block;
    width: 70px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    font-size: 0.9rem;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--gold);
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background-color: transparent;
    color: var(--gold);
}

/* ========== Header ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 100;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.8px;
    font-family: 'Cinzel', serif;
    transition: var(--transition);
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: var(--dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 102;
    background: transparent;
    border: none;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Images should be completely protected */
img, video {
    pointer-events: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    -webkit-touch-callout: none !important;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    header .container {
        padding: 0 12px;
    }
    
    .logo a {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    nav ul li a {
        font-size: 0.8rem;
    }
    
    .hero {
        height: 70vh;
        background-attachment: scroll;
        margin-top: 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem !important;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    header .container {
        padding: 0 10px;
    }
    
    .logo a {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .hero {
        height: 60vh;
        background-position: center center;
    }
    
    .hero h1 {
        font-size: 2rem !important;
        letter-spacing: 1.2px;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 1rem !important;
    }
}

/* ========== Hero Section ========== */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 0 30px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.hero h1 br {
    display: block;
    content: "";
}

.hero p {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1.2px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ========== About Section ========== */
.about {
    padding: 70px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text.full-width {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark-light);
    line-height: 1.7;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    letter-spacing: 0.4px;
    break-inside: avoid-column;
    text-align: left;
}

.about-text p:first-of-type {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--dark);
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Media queries for the about section */
@media (max-width: 992px) {
    .about-content {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .about-text {
        column-count: 1;
    }
}

/* ========== Collection Section ========== */
.collection {
    padding: 70px 0;
    background-color: var(--light-gray);
    width: 100%;
}

/* Auto-scrolling Gallery */
.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 30px 0;
    padding: 20px 0;
}

.gallery-scroll {
    display: flex;
    animation: scroll 40s linear infinite;
    width: fit-content;
    padding: 10px 0;
}

.gallery-scroll:hover {
    animation-play-state: paused;
}

.gallery-item {
    width: 280px;
    height: 380px;
    margin: 0 15px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.5s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.8;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 600;
    font-family: var(--font-accent);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 7 - 15px * 14));
    }
}

/* Pause animation on hover */
.gallery-scroll:hover {
    animation-play-state: paused;
}

.collection-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: none;
    font-size: 0.9rem;
    color: var(--dark);
    margin: 0 10px 10px;
    padding: 8px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 20px;
    border: 1px solid transparent;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.category-btn:hover,
.category-btn.active {
    color: var(--gold);
    border-color: var(--gold);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.collection-item {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.collection-image {
    height: 250px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.collection-details {
    padding: 20px;
}

.collection-details h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.collection-details p {
    color: var(--gray);
    font-size: 0.9rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

/* ========== Services Section ========== */
.services {
    padding: 100px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========== Contact Section ========== */
.contact {
    padding: 70px 0;
    background-color: var(--white);
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-right: 15px;
    margin-top: 4px;
}

.contact-item h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.contact-item p {
    color: var(--gray);
    font-size: 0.92rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.4px;
}

.contact-map {
    height: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    border: none;
    box-shadow: var(--shadow);
}

/* ========== Footer ========== */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 70px 0 30px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo h3 {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.footer-logo p {
    color: var(--light-gray);
    font-size: 0.9rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.8px;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-gray);
    transition: var(--transition);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--gold);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ========== Responsive Design ========== */
@media (max-width: 992px) {
    header {
        padding: 12px 0;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-map {
        height: 280px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }
    
    header .container {
        padding: 0 12px;
    }
    
    .logo a {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease;
        padding: 0;
        z-index: 101;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        width: 100%;
        padding: 0;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        font-size: 0.8rem;
        display: block;
        padding: 10px 0;
        width: 100%;
    }
    
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero h1 {
        font-size: 2.5rem !important;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1.2rem !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-item {
        width: 220px;
        height: 220px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .brand a {
        font-size: 1.2rem;
    }
    
    .header .container {
        padding: 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    
    .gallery-item:hover img {
        transform: none;
    }
    
    .gallery-item:hover .gallery-caption {
        transform: none;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 0;
    }
    
    header .container {
        padding: 0 10px;
    }
    
    .logo a {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2rem !important;
        letter-spacing: 1.2px;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 1rem !important;
    }
    
    .brand-text {
        font-size: 3.5rem;
    }
    
    .brand a {
        font-size: 1rem;
    }
    
    .header .container {
        padding: 0.3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

/* ========== Video Wallpaper Section ========== */
.video-wallpaper {
    width: 100%;
    position: relative;
    background-color: var(--dark);
    overflow: hidden;
    height: calc(100vh - 200px);
    margin: 70px 0;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    pointer-events: none; /* Prevent interactions */
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; /* Slightly transparent for elegance */
    transition: filter 0.8s ease, transform 0.8s ease, opacity 0.5s ease;
    cursor: default;
}

/* Loading state */
.video-container.loaded video {
    opacity: 1;
}

/* Video loading indicator */
.video-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5;
    transition: opacity 0.5s ease;
}

.video-container.loaded .video-loading {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Loader animation */
.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Blur effect when paused */
.video-container.paused video {
    filter: blur(12px);
    transform: scale(1.05); /* Subtle zoom effect */
}

/* Brand overlay */
.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.brand-overlay.visible {
    opacity: 1;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Text slot machine effect */
.brand-text {
    font-family: var(--font-accent, 'Cinzel', serif);
    color: var(--brand-gold, #D4AF37);
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.brand-tagline {
    font-family: var(--font-secondary, 'Montserrat', sans-serif);
    color: var(--brand-light, #F8F4E3);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.brand-overlay.visible .brand-text {
    opacity: 1;
    transform: translateY(0);
}

.brand-overlay.visible .brand-tagline {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .video-wallpaper {
        height: 50vh;
    }
    
    .video-container video {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
    
    .brand-text {
        font-size: 2rem !important;
        letter-spacing: 1.2px;
        margin-bottom: 0.2rem;
    }

    .brand-tagline {
        font-size: 1rem !important;
        letter-spacing: 0.8px;
    }
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

body.menu-open {
    overflow: hidden;
}

/* Add overlay when menu is open */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
}

/* Word animation styling for slot machine effect */
.brand-text .word,
.brand-tagline .word {
    display: inline-block;
    transition: opacity 0.5s ease;
    transform-origin: center bottom;
}

.brand-text .word {
    margin-right: 0.2em;
}

.brand-tagline .word {
    margin-right: 0.1em;
}

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-overlay.visible .word {
    animation: dropIn 0.3s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand-overlay.visible .brand-text .word:nth-child(1) { animation-delay: 0.05s; }
.brand-overlay.visible .brand-text .word:nth-child(2) { animation-delay: 0.15s; }
.brand-overlay.visible .brand-tagline .word:nth-child(1) { animation-delay: 0.8s; }
.brand-overlay.visible .brand-tagline .word:nth-child(2) { animation-delay: 0.9s; }

/* Add these language selector and showcase banner styles */
.showcase-banner {
    background: linear-gradient(to right, var(--dark), var(--brand-accent), var(--dark));
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 90;
    margin-top: 80px;
}

.showcase-banner p {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--light-color);
}

/* Enhanced showcase banner */
.showcase-banner {
    background: linear-gradient(to right, var(--dark), var(--brand-accent), var(--dark));
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 90;
    margin-top: 80px;
}

.showcase-banner p {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--light-color);
}

/* Add footer-bottom style for the copyright section */
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Letter Animation */
.animate-letters .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-letters.visible .letter {
    opacity: 1;
    transform: translateY(0);
}

.brand-text .letter {
    animation-name: letterFadeIn;
    animation-fill-mode: forwards;
    animation-duration: 0.4s;
    opacity: 0;
}

.brand-tagline .letter {
    animation-name: letterFadeIn;
    animation-fill-mode: forwards;
    animation-duration: 0.4s;
    opacity: 0;
}

@keyframes letterFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Futuristic Features */
.gallery-item {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    perspective: 1000px;
    transform-style: preserve-3d;
    overflow: visible;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--brand-gold-rgb), 0.2) 0%, rgba(var(--brand-dark-rgb), 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 10px;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-caption {
    transform: translateZ(30px);
    backface-visibility: hidden;
}

/* Improved language selector styles - more visible and properly positioned */
.language-selector {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 75px;
    transform: translateY(-50%);
    z-index: 95;
}

.lang-icon {
    color: var(--gold);
    margin-right: 8px;
    font-size: 16px;
}

#language-dropdown {
    background-color: white;
    border: 2px solid var(--gold);
    border-radius: 4px;
    color: var(--dark);
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 28px 5px 10px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#language-dropdown:hover {
    border-color: var(--gold-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#language-dropdown:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

#language-dropdown.loading {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v4M12 18v4M4.93 4.93l2.83 2.83M16.24 16.24l2.83 2.83M2 12h4M18 12h4M4.93 19.07l2.83-2.83M16.24 7.76l2.83-2.83'%3E%3C/path%3E%3C/svg%3E");
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive language selector */
@media (max-width: 768px) {
    .language-selector {
        right: 60px;
    }
    
    #language-dropdown {
        padding: 4px 20px 4px 5px;
        font-size: 0.75rem;
        max-width: 85px;
    }
}

@media (max-width: 480px) {
    .language-selector {
        right: 50px;
    }
    
    #language-dropdown {
        padding: 3px 18px 3px 4px;
        font-size: 0.7rem;
        max-width: 70px;
        border-width: 1px;
    }
} 