/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Header Section */
.s-header {
    min-height: 106vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    background-color: #ffffff;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 6%;
    width: 100%;
    margin-top: -40px;     
}

nav img {
    width: 200px;
    margin-left: -70px;
}

.nav-links {
    flex: 1;
    text-align: center;
    justify-content: center;
}

.nav-links-box {
    border: 0px solid; 
    padding: 10px;
    background-color: #FAF0E6;
    border-radius: 120px;
    display: inline-block; 
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: black;
    text-decoration: none;
    font-family: cursive;
    font-size: 20px;
    margin: 15px;
}

.nav-links ul li:hover {
    background-color: #CBC3E3;
    border-radius: 5px;
}

nav .fa {
    display: none;
}

.book-now-btn {
    position: absolute;
    top: 110px;
    right: 30px;
    background-color: #CBC3E3;
    color: black;
    padding: 12px 20px;
    font-size: 15px;
    border: none;
    border-radius: 120px;
    text-decoration: none;
    font-family: "Philosopher", sans-serif;
    cursor: pointer;
    display: none;
    z-index: 10;
}

.book-now-btn:hover {
    background-color: #CF9FFF;
    transition: 0.3s ease;
}

/* Responsive Navigation */
@media (min-width: 700px) {
    .book-now-btn {
        display: inline-block;
    }
}

@media(max-width: 700px){
    nav img {
        margin-left: -40px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: fixed;
        background: #b6d1d7;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa {
        display: block;
        color: #000000;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul {
        padding: 30px;
    }
    .nav-links ul li a {
        margin: 0;
        font-family: cursive;
    }
    .nav-links-box {
        background-color: transparent;
        padding: 0;
        border-radius: 0;
    }
}




/* Samira Header Content Flexbox */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 6%;
    gap: 40px;
}

.samira-image img {
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    margin-top: -100px;
}


.header-text {
    flex: 1;
    margin-top: -100px;
    
}

.header-text h1 {
    font-size: 48px;
    color: #808000;
    margin-bottom: 20px;
    font-family: "Philosopher", sans-serif;
}

.header-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Buttons */
.link-box {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.link-box .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #CBC3E3;
    color: black;
    font-size: 18px;
    font-family: "Philosopher", sans-serif;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.link-box .btn:hover {
    background-color: #CF9FFF;
}

/* Responsive Header */
@media (max-width: 700px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 6%;
    }
    
    .header-text h1 {
        font-size: 32px;
        padding-top: 70px;
    }
    .header-text p {
        font-size: 16px;
    }
    .link-box {
        justify-content: center;
    }
    .link-box .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}
@media (max-width: 700px) {
    .samira-image img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 20px;
        padding-top: 0;     /* Remove the weird padding */
    }
}


/* Pooja Header Content Flexbox */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 6%;
    gap: 40px;
}

.pooja-image img {
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    margin-top: -200px;
}
/* Desktop only */
@media (min-width: 992px) {
    .pooja-image {
        margin-top: -30px;   /* push image upward */
        margin-bottom: 30px; /* space below before paragraph */
        text-align: center;  /* optional, keep image centered */
    }

    .pooja-image img {
        max-width: 300px;    /* adjust size if needed */
        height: auto;
        display: inline-block;
    }
}




.modalities-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: left;
    font-family: "Philosopher", sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }
  
  .modalities-list li::marker {
    color: #808000; /* olive-colored bullets to match theme */
  }

.header-text {
    flex: 1;
}

.header-text h1 {
    font-size: 48px;
    color: #808000;
    margin-bottom: 20px;
    font-family: "Philosopher", sans-serif;
}

.header-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Buttons */
.link-box {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.link-box .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #CBC3E3;
    color: black;
    font-size: 18px;
    font-family: "Philosopher", sans-serif;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.link-box .btn:hover {
    background-color: #CF9FFF;
}

/* Responsive Header */
@media (max-width: 700px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 6%;
    }
    
    .header-text h1 {
        font-size: 32px;
        
    }
    .header-text p {
        font-size: 16px;
    }
    .link-box {
        justify-content: center;
    }
    .link-box .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}
@media (max-width: 700px) {
    .pooja-image img {
        width: 70%;          /* smaller image */
        max-width: 260px;    /* limits size on mobile */
        height: auto;
        margin: 0 auto 20px auto;
        object-fit: cover;
        border-radius: 20px;
        display: block;      /* centers the image */
    }
}

.verified img{
    width: 200px;
    padding-top: 20px;
    margin-left: 250px;
}

@media (max-width: 700px){
    .verified{
        margin-left: -100px;
    }
}



/* ==== MODAL OVERLAY ==== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease;
}

/* ==== MODAL BOX ==== */
.modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px 45px;
    width: 90%;
    max-width: 430px;
    margin: 12% auto;
    position: relative;
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
    animation: slideUp 0.35s ease;
}

/* ==== CLOSE BUTTON ==== */
.close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 32px;
    color: #777;
    cursor: pointer;
    transition: 0.3s ease;
}

.close:hover {
    color: #333;
}

/* ==== MODAL TEXT ==== */
.modal-title {
    font-family: "Philosopher", serif;
    font-size: 26px;
    color: #808000;
    margin-bottom: 10px;
}

.modal-subtext {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

/* ==== BUTTON STYLES ==== */
.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-btn {
    display: block;
    padding: 14px 20px;
    font-size: 17px;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-family: "Philosopher", sans-serif;
    transition: 0.3s ease;
}

/* Filled button */
.modal-btn-filled {
    background: #CBC3E3;
    color: black;
}

.modal-btn-filled:hover {
    background: #CF9FFF;
}

/* Outline button */
.modal-btn-outline {
    border: 2px solid #CBC3E3;
    color: #808000;
    background: none;
}

.modal-btn-outline:hover {
    background: #F4ECFF;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

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




.calendar-input {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
    border: 2px solid #CBC3E3;
    outline: none;
    margin-top: 10px;
    font-family: "Inter", sans-serif;
}

.calendar-input:focus {
    border-color: #CF9FFF;
    box-shadow: 0 0 4px rgba(207,159,255,0.7);
}


#bookingSuccess {
    background: #d4edda;
    border: 1px solid #28a745;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    text-align: center;
}


.time-slots {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .time-slot {
    padding: 8px 12px;
    background: #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .time-slot.disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
  }
  
  

  