:root {
    --primary-color: #FFD700;
    /* Gold */
    --secondary-color: #111111;
    /* Deep Black */
    --accent-color: #FFFFFF;
    --text-muted: #888888;
    --spacing: clamp(40px, 8vw, 80px);
    /* Fluid spacing */
}

body {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    margin: 0;
    padding: 0;
}

img,
video {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
.navbar-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Fluid Typography */
h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
}

h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

/* Navbar */
.navbar {
    padding: clamp(10px, 2vw, 20px) 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar-scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.nav-link {
    color: var(--accent-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        margin-top: 15px;
        border-radius: 15px;
        border: 1px solid rgba(255, 215, 0, 0.1);
    }

    .nav-link {
        margin: 10px 0;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
}

/* Support for mobile parallax issues */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero-content {
    max-width: 90%;
}

.hero-content h1 {
    margin-bottom: 20px;
    background: -webkit-linear-gradient(var(--primary-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    letter-spacing: clamp(2px, 1vw, 5px);
    color: var(--text-muted);
}

/* Gallery Filters */
.filters {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    padding: 8px 18px;
    margin: 0;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Gallery Grid */
.gallery-item {
    padding: clamp(5px, 2vw, 10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1a1a;
}

.gallery-card img {
    width: 100%;
    height: clamp(250px, 50vh, 400px);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

@media (hover: none) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        justify-content: flex-end;
    }

    .gallery-info {
        text-align: left !important;
        width: 100%;
    }

    .gallery-info h4 {
        font-size: 1.1rem;
    }
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.85rem;
    margin: 0;
}

/* Sections */
section {
    padding: var(--spacing) 0;
}

.section-title {
    margin-bottom: clamp(30px, 8vw, 60px);
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

/* About Section Mobile Optimizations */
@media (max-width: 991px) {
    .about img {
        margin-bottom: 30px;
    }

    .about .section-title {
        text-align: center;
    }

    .about .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about p {
        text-align: center;
    }
}

/* Contact & Footer */
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links a {
    color: var(--accent-color);
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin: 0;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.btn-premium {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: clamp(12px, 3vw, 15px) clamp(25px, 6vw, 40px);
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 3vw, 1rem);
    border: none;
}

.btn-premium:hover {
    background: #fff;
    transform: translateY(-3px);
}

footer p {
    font-size: 0.95rem;
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* Utilities */
.bg-black {
    background-color: #000 !important;
}

/* Custom Scrollbar for modern browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}