/* ==========================================
   CSS VARIABLES (Easy color editing)
   ========================================== */
:root {
    --bg-main: #0B0B0B;        /* Main dark background */
    --bg-secondary: #161616;   /* Slightly lighter background for contrast */
    --accent-primary: #C8A96A; /* Gold */
    --accent-secondary: #E8C98A; /* Lighter Gold */
    --text-primary: #FFFFFF;   /* White text */
    --text-secondary: #B5B5B5; /* Grayish text */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ==========================================
   GLOBAL RESET
   ========================================== */
/* We reset margins and padding so browsers don't add their own default spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Enables smooth scrolling when clicking nav links */
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-main);
}

body {
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Common Container for centering content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.bg-secondary {
    background-color: var(--bg-secondary);
}

/* Section styling */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
nav {
    position: fixed; /* Stays at top when scrolling */
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100; /* Keeps it above other elements */
    transition: background-color 0.4s ease, padding 0.4s ease;
}

/* This class is added by JS when scrolling down */
nav.scrolled {
    background-color: rgba(11, 11, 11, 0.95);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

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

#logo-img {
    height: 50px;
    /* If no logo is present yet, this styles the broken image text */
    color: var(--accent-primary); 
    border: 2px var(--accent-primary);
    border-radius: 50%;
    font-weight: bold;
}

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

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
}

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

.hero-logo{
  max-width: 175px; /* Adjust this size to fit your logo perfectly */
  margin-bottom: 20px; /* Adds space between the logo and your business name */
  display: block;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto; /* This centers the logo */
}

/* Book Now Button in Nav */
.btn-book-now {
    background-color: var(--accent-primary);
    color: var(--bg-main) !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.btn-book-now:hover {
    background-color: var(--accent-secondary);
    box-shadow: 0 0 15px var(--accent-primary); /* Soft glow animation */
}

/* Hamburger menu (hidden on desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-primary);
    transition: 0.3s;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    height: 100vh; /* 100% of the viewport height */
    background: url('assets/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Dark overlay so text is readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10; /* Put text above overlay */
    animation: fadeIn 2s ease;
}

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

.hero-content h1 {
    font-size: 4rem;
    color: var(--accent-primary);
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-solid {
    background-color: var(--accent-primary);
    color: var(--bg-main);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    border: 2px solid var(--accent-primary);
    cursor: pointer;
}

.btn-solid:hover {
    background-color: var(--accent-secondary);
    box-shadow: 0 0 15px var(--accent-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
    background-color: var(--accent-primary);
    color: var(--bg-main);
}

/* Animated Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

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

/* ==========================================
   GRID LAYOUTS (For Cards, Gallery, Team)
   ========================================== */
.grid-container {
    display: grid;
    /* This automatically creates columns that fit the screen size. Very beginner-friendly! */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Generic Card Styles */
.card {
    background-color: var(--bg-main);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #222;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: var(--accent-primary);
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card h3 {
    color: var(--accent-primary);
    margin-bottom: 15px;
}

.card p {
    color: var(--text-secondary);
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-primary);
    color: var(--bg-main);
    border-color: var(--accent-primary);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover; /* Ensures images are cropped beautifully without stretching */
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.gallery-overlay {
    position: absolute;
    inset: 0; /* Shorthand for top, right, bottom, left = 0 */
    background: rgba(11, 11, 11, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h3 {
    color: var(--accent-primary);
}

/* ==========================================
   VIDEO & TEAM & TESTIMONIAL CARDS
   ========================================== */
.video-card img, .team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.team-card h3 {
    margin-bottom: 5px;
}

.team-card p {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.testimonial-card {
    background-color: var(--bg-secondary);
    font-style: italic;
    position: relative;
}

.testimonial-card::before {
    content: "“";
    font-size: 4rem;
    color: var(--accent-primary);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}


/* ==========================================
   CONTACT SECTION (Updated Layout)
   ========================================== */
.contact-details-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-secondary);
    padding: 50px 30px;
    border-radius: 10px;
    border: 1px solid rgba(200, 169, 106, 0.2); /* Very subtle gold border */
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

/* Make the labels (Email, Phone, etc.) stand out in gold */
.contact-item strong {
    color: var(--accent-primary);
    margin-right: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Style the Facebook and Instagram links */
.contact-item.socials a {
    color: var(--text-secondary);
    margin: 0 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
}

.contact-item.socials a:hover {
    color: var(--accent-primary);
}

/* Book Now Button Wrapper */
.contact-button-wrapper {
    margin-top: 20px;
}

/* Style for the big Book Now button */
.book-now-btn {
    display: inline-block;
    padding: 15px 50px;
    background-color: var(--accent-primary);
    color: var(--bg-main);
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.3s ease;
}

.book-now-btn:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-3px); /* Small lift effect on hover */
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background-color: #050505;
    padding: 50px 0 20px;
    text-align: center;
}

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

.footer-logo h2 {
    color: var(--accent-primary);
}

.footer-links a {
    margin: 0 10px;
    color: var(--text-secondary);
}

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

.copyright {
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* ==========================================
   MODALS (Lightbox & Video Player)
   ========================================== */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 1.2rem;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--accent-primary);
}

.video-wrapper {
    width: 90%;
    max-width: 800px;
}

video {
    width: 100%;
    border-radius: 5px;
}

.lightbox-nav {
    cursor: pointer;
    position: absolute;
    top: 50%; /* Centers vertically */
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 50px;
    padding: 20px;
    transition: 0.3s ease;
    user-select: none; /* Prevents highlighting the arrow as text */
}

.lightbox-nav:hover {
    color: var(--accent-primary); /* Turns gold on hover */
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

#lightbox-counter {
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}


/* ==========================================
   RESPONSIVE DESIGN (Mobile adjustments)
   ========================================== */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: -100%; /* Hidden off-screen to the left */
        width: 100%;
        background-color: rgba(11,11,11,0.98);
        padding: 30px 0;
        transition: 0.4s ease;
    }

    /* When JS adds the .active class, it slides in */
    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}