:root {
    --primary-color: #d4af37;
    /* Gold */
    --secondary-color: #f1f1f1;
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --header-bg: rgba(10, 10, 10, 0.4);
    --font-main: 'Raleway', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Fullscreen Background Wrapper */
.main-wrapper {
    flex: 1;
    background: url('../images/background.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

.main-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Darkened slightly for text pop */
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header */
header {
    width: 100%;
    z-index: 1000;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

/* Header Logo Fix: Increased size and removed aggressive filter if it was hiding it. 
   Assuming flogo.png is the colored logo, we make it ensure it pops. */
.logo img {
    height: 70px;
    /* Increased from 40px */
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
    /* Shadow for contrast */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.9;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    opacity: 1;
    color: var(--primary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Center Content */
.center-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 20px;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Increased gap */
    color: #fff;
    transform: scale(1.2);
    /* Overall larger presentation */
}

.brand-logo-img {
    width: 150px;
    /* Increased from 80px - significantly larger */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
}

.brand-text-block {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.brand-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    /* Reduced from 3rem */
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.brand-title span {
    display: block;
    font-weight: 700;
}

.coming-soon-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 3px;
    opacity: 0.9;
    margin-top: 10px;
    text-transform: lowercase;
    background: linear-gradient(90deg, #ff8c00, #ffa500, #ff8c00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientGlow 3s ease infinite;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.5));
}

/* Dot animation - each dot appears with 1 second delay */
.dot {
    opacity: 0;
    animation: dotFade 4s step-end infinite;
    -webkit-text-fill-color: #ff8c00;
    color: #ff8c00;
}

.dot1 {
    animation-delay: 0s;
}

.dot2 {
    animation-delay: 1s;
}

.dot3 {
    animation-delay: 2s;
}

@keyframes gradientGlow {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

@keyframes dotFade {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    25.01% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Footer */
footer {
    padding: 20px 5%;
    text-align: center;
    z-index: 10;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    /* Gold hamburger */
    transition: var(--transition);
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background: #080808;
        flex-direction: column;
        width: 100%;
        text-align: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 9999;
    }

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

    .hamburger {
        display: flex;
        z-index: 10000;
    }

    .brand-lockup {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        transform: scale(1);
        /* Reset scale for mobile */
    }

    .brand-text-block {
        border-left: none;
        padding-left: 0;
        text-align: center;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 20px;
        margin-top: 10px;
    }

    .brand-title {
        font-size: 2rem;
    }

    .brand-logo-img {
        width: 140px;
        /* Increased from 100px to match user request */
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Gallery Specific Styles */
.gallery-section-title {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-section-title h2 {
    font-size: 3rem;
    font-weight: 200;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.gallery-section-title h2 span {
    font-weight: 600;
    color: var(--primary-color);
}

.gallery-section-title p {
    color: #999;
    margin-top: 10px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Slider and Grid adjustments */
.slider-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 50px;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 4px;
    /* Tight gap for premium mosaic feel */
    padding: 0;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.8);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
    z-index: 2;
}

/* ===========================
   Contact Page Styles
   =========================== */

/* Container adjustments for fixed header spacing */
.contact-page-container {
    padding-top: 150px !important; /* Increased top padding */
    padding-bottom: 50px !important;
}

/* Custom separator */
.separator {
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
    opacity: 1; /* Bootstrap opacity fix */
}

/* Card Styling */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    height: 100%; /* Fill column height */
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 5px;
    margin-top: 0;
}

.contact-card a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Map Styling */
.contact-map {
    border: 2px solid var(--primary-color);
    filter: grayscale(100%) invert(90%);
    transition: var(--transition);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    min-height: 450px; /* Ensure visibility */
}

.contact-map:hover {
    filter: grayscale(0%);
}