/* ==========================================
   1. GLOBAL & BASE STYLES
   ========================================== */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000;
    color: #9f3863;
    font-family: Arial, sans-serif;
}

/* ==========================================
   2. FIXED HEADER & BRANDING LAYOUT
   ========================================== */
.logo {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 450px;
    height: auto;
    z-index: 1000;
}

.top-nav {
    position: fixed;
    top: 90px;
    right: 20px;
    display: flex;
    gap: 50px;
    z-index: 1000;
}

.top-nav a {
    color: rgb(145, 35, 106);
    text-decoration: none;
    font-size: 18px;
    padding: 10px 18px;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.7);
    transition: 0.3s;
}

.top-nav a:hover {
    background: #c86cff;
    color: #fff;
}

/* ==========================================
   3. FULL SCREEN HERO BACKGROUND VIDEO
   ========================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;            /* Forces frame to completely fill view screen height */
    display: flex;
    align-items: center;      /* Centers your text vertically */
    justify-content: center;  /* Centers your text horizontally */
    overflow: hidden;         /* Clips any excess edge spillover cleanly */
    background-color: #000;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;         /* Fills background completely without distortion */
    transform: translate(-50%, -50%); /* Locks video focus point right in the middle */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark lens overlay to make text highly readable */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;                /* Places content safely on the top layer */
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
}

/* ==========================================
   4. SECTIONS CONTENT LAYOUT
   ========================================== */
.welcome-text {
    max-width: 600px;
    margin: 80px auto;         /* Centered horizontally on the page layout */
    padding: 0 20px;
    text-align: center;
}

.welcome-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
}

#services {
    padding: 100px 20px 60px;   /* Added spacing around header anchor points */
    max-width: 1700px;
    margin: 0 auto;
}

#services h2 {
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


.service-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.service-card img,
.service-video {
    width: 80%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin: 15px auto;
    border-radius: 8px;
}
.service-card {
    display: block;
    width: 100%;
}
.service-card h3 {
    color: #c86cff;
    margin: 15px 10px 10px;
}

.service-card p {
        font-size: 0.85rem;
   
}

.service-card p a {
    color: #c86cff;
    text-decoration: none;
    font-weight: bold;
}

/* ==========================================
   5. GALLERY / LOOKBOOK SECTION
   ========================================== */
#gallery {
    padding: 80px 20px;
    background-color: #090000;
    text-align: center;
}

#gallery h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    height: 350px;
}

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

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

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Slightly darkened for luxury styling text contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item .overlay p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 2px solid #c86cff;
    padding-bottom: 5px;
    margin: 0;
}

/* ==========================================
   6. BOOKING MODAL WINDOW STYLES
   ========================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;             /* Elevated above fixed headers */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.modal-content {
    background: #111;
    color: white;
    width: 100%;
    max-width: 400px;
    margin: 10% auto;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(200, 108, 255, 0.2);
    box-sizing: border-box;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
}

.modal-content button {
    background: #c86cff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    margin-top: 10px;
    transition: background 0.3s;
}

.modal-content button:hover {
    background: #b056e0;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #c86cff;
    line-height: 1;
}
/* about section */
.about-section {
    padding: 200px 3%;
    text-align: justify;
    background: rgba(0,0,0,0.7);
    color: white;
}

.about-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #d19cff;
}

.about-section p {
    max-width: 400px;
    margin: 25px auto;
    line-height: 1.8;
    font-size: 18px;
}

.contact-section {
    padding: 80px 10%;
    text-align: center;
    background: #111;
    color: white;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #d19cff;
}

.contact-info {
    margin-bottom: 30px;
    line-height: 2;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #d19cff;
    border-radius: 5px;
    background: #222;
    color: white;
    font-size: 16px;
}

.contact-form button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #d19cff;
    color: black;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    opacity: 0.9;
}


#bookingTime {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 6px;
    border: none;
    box-sizing: border-box;
    font-size: 16px;
}


