* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Playfair Display', serif;
color: #000;
background-color: #fff;
}
.p11{
    
font-family: 'Playfair Display', serif;
}
/* --- HEADER --- */
.header {
background-color: #000;
color: #fff;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
}

.header .logo {
font-family: 'Playfair Display', serif;
font-size: 24px;
font-style: italic;
}

.header .logo span {
display: block;
font-size: 10px;
font-style: normal;
font-weight: 400;
}

/* --- NAVIGATION MENU (Mobile) --- */
.nav-toggle {
font-size: 30px;
cursor: pointer;
z-index: 101;
display: block;
}

.nav-menu {
position: fixed;
top: 0;
right: 0;
height: 100%;
width: 200px;
background-color: #000;
padding-top: 60px;
transform: translateX(100%);
transition: transform 0.3s ease-in-out;
z-index: 99;
}

.nav-menu.active {
transform: translateX(0);
}

.nav-menu ul {
list-style: none;
padding: 20px;
}

.nav-menu ul li {
margin: 20px 0;
}

.nav-menu ul li a {
color: #fff;
text-decoration: none;
font-size: 18px;
font-weight: bold;
}

.hero-section {
position: relative;
min-height: 80vh; /* This sets the height to 80% of the viewport height */
max-height: 900px; /* Optional: Sets a max height for very large screens */
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
padding-top: 60px;
}

.image-slider {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
cursor: pointer;
}

.hero-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.hero-image.active {
opacity: 1;
}

.hero-content {
z-index: 1;
background: rgba(0, 0, 0, 0.4);
padding: 20px;
margin: 20px;
}

.hero-content h1 {
font-family: 'Playfair Display', serif;
font-size: 2.5em;
line-height: 1.2;
margin-bottom: 20px;
opacity: 0; /* Hidden by default */
transition: opacity 0.5s ease-in-out;
}

.hero-content h1.visible {
opacity: 1;
}

.hero-button {
display: none;
background-color: black;
color: white;
padding: 15px 30px;
text-decoration: none;
font-weight: bold;
text-transform: uppercase;
border: none;
cursor: pointer;
}

/* --- DESKTOP VIEW ADJUSTMENT --- */
@media (min-width: 768px) {
.hero-content h1 {
font-size: 4em;
}
}
.two-image-section {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
padding: 20px;
background-color: #fff;
}

.bouncing-image {
width: 100%;
max-width: 400px; /* Constrains image size on desktop */
height: auto;
object-fit: cover;
animation: bounce 2s ease-in-out infinite;
}
#heroHeadline{
    font-size: 25px;
}

/* Bounce animation */
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-5px);
}
}

/* --- DESKTOP VIEW ADJUSTMENT --- */
@media (min-width: 768px) {
.two-image-section {
flex-direction: row;
justify-content: center;
gap: 30px;
}
.bouncing-image {
max-width: 300px;
}
}

/* --- WELCOME SECTION --- */
.welcome-section {
background-color: #000;
color: #fff;
text-align: center;
padding: 40px 20px;
}

.welcome-section h2 {
font-family: 'Playfair Display', serif;
font-size: 2em;
margin-bottom: 20px;
}

.welcome-section p {
font-family: 'Playfair Display', serif;
line-height: 1.8;
font-style: italic;
}

.welcome-image {
width: 100%;
height: auto;
margin-top: 20px;
}
.new-content-section-1 {
text-align: center;
padding: 20px;
background-color: #fff;
}

.content-image-vertical {
width: 100%;
max-width: 400px; /* Constrains the image size on desktop */
height: auto;
object-fit: cover;
margin-bottom: 20px;
}

.content-text-container {
padding: 0 10px;
font-family: 'Roboto', sans-serif;
color: #000;
line-height: 1.6;
}

.content-text-container p {
margin-bottom: 15px;
}

/* --- NEW CONTENT SECTION 2 --- */
.new-content-section-2 {
text-align: center;
padding: 20px;
background-color: #fff;
}

.text-on-black-bg {
background-color: #000;
color: #fff;
padding: 40px 20px;
text-align: center;
margin-top: 20px;
}

.text-on-black-bg p {
font-family: 'Playfair Display', serif;
font-size: 1.5em;
margin-bottom: 10px;
}

/* --- DESKTOP VIEW ADJUSTMENT --- */
@media (min-width: 768px) {
.image-grid-container {
gap: 20px;
}

.small-image {
width: 150px;
height: 150px;
}

.content-image-vertical {
width: 60%;
max-width: 600px;
}
}



/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
background-color: #EFEFEF;
text-align: center;
padding: 60px 20px;
}

.testimonials-section h2 {
font-family: 'Playfair Display', serif;
font-size: 2em;
margin-bottom: 5px;
}

.testimonials-section p {
font-size: 14px;
font-weight: bold;
color: #A3A3A3;
margin-bottom: 20px;
}

.testimonials-button {
background-color: #D3D3D3;
color: #000;
padding: 15px 30px;
text-decoration: none;
font-weight: bold;
/* text-transform: uppercase; */
border: none;
cursor: pointer;
}

/* --- FOOTER --- */
.footer {
background-color: #EFEFEF;
text-align: center;
padding: 40px 20px 20px;
}

.footer .logo {
font-family: 'Playfair Display', serif;
font-size: 30px;
font-style: italic;
margin-bottom: 10px;
}

.footer .copyright {
font-size: 14px;
color: #A3A3A3;
}

/* --- BACK-TO-TOP BUTTON --- */
.back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #000;
color: #fff;
width: 40px;
height: 40px;
border-radius: 50%;
text-align: center;
line-height: 40px;
font-size: 24px;
cursor: pointer;
display: none;
z-index: 99;
}

.back-to-top.show {
display: block;
}

/* --- DESKTOP VIEW (using a Media Query) --- */
@media (min-width: 768px) {
.nav-toggle {
display: none; /* Hide hamburger on desktop */
}

.header {
padding: 20px 50px;
}

.nav-menu {
position: static;
width: auto;
height: auto;
transform: translateX(0);
padding-top: 0;
background-color: transparent;
}

.nav-menu ul {
display: flex;
padding: 0;
}

.nav-menu ul li {
margin: 0 15px;
}

.nav-menu ul li a {
font-size: 14px;
}

.hero-content {
padding: 40px;
}

.hero-content h1 {
font-size: 4em;
}

.welcome-section h2,
.testimonials-section h2 {
font-size: 3em;
}

.testimonials-section p {
font-size: 16px;
}
}
/* --- ABOUT ME PAGE STYLING --- */
/* --- UPDATED ABOUT ME PAGE STYLING --- */
.about-content {
    padding-top: 80px; /* Account for fixed header */
}

.about-intro-section {
    background-color: #f0f0f0; /* Ash color */
    padding: 40px 20px;
}

.about-intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.about-intro-section p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.about-image-section {
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.about-me-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-outro-section {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
}

.about-outro-section p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: center;
}

/* --- DESKTOP VIEW ADJUSTMENT --- */
@media (min-width: 768px) {
    .about-intro-section {
        padding: 60px 10%;
    }
    .about-intro-section h2 {
        font-size: 2.5em;
    }
    .about-outro-section {
        padding: 60px 10%;
    }
    .about-outro-section p {
        font-size: 1.3em;
    }
}/* --- GALLERY PAGE STYLING --- */
.gallery-content {
    padding-top: 80px;
    text-align: center;
}

.look-book-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 20px;
}

/* Zooming Image Section */
.zooming-image-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-height: 500px;
    margin-bottom: 40px;
}

.zooming-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 10s forwards;
    transform-origin: center center;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Image Carousel Section */
.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 50px; /* Space for buttons */
    overflow: hidden;
}

.carousel-images {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.carousel-img {
    display: none; /* Hide all images by default */
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-img.active {
    display: block; /* Show the active image */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.left-btn {
    left: 10px;
}

.right-btn {
    right: 10px;
}

/* DESKTOP VIEW */
@media (min-width: 768px) {
    .look-book-heading {
        font-size: 4em;
    }

    .zooming-image-container {
        max-height: 700px;
    }
}
/* --- REVIEWS PAGE STYLING --- */
/* --- REVIEWS PAGE STYLING --- */
.reviews-page-content {
    padding: 80px 20px 40px;
}

.reviews-page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

.review-card {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.review-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    font-style: italic;
    color: #000;
}

.review-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: flex-start;
}

.rating-stars {
    color: #FFD700; /* Gold color for stars */
    font-size: 1.5em;
    margin-right: 10px;
}

.review-date {
    font-size: 0.9em;
    color: #666;
}

.review-text {
    line-height: 1.6;
    margin: 10px 0;
    overflow: hidden; /* Hides overflow text by default */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Show only 3 lines */
    -webkit-box-orient: vertical;
}

.review-text.expanded {
    -webkit-line-clamp: unset; /* Shows full text when expanded */
    overflow: visible;
}

.read-more, .verified {
    font-size: 0.9em;
    color: #666;
    margin-right: 15px;
    cursor: pointer;
}

.verified {
    color: green;
}

/* --- REVIEW SUBMISSION FORM --- */
.review-form-container {
    background-color: #f5f5f5;
    padding: 40px 20px;
    border-radius: 5px;
}

.review-form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse; /* Reverses the stars so they are in the correct order */
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    color: #ccc;
    font-size: 2em;
}

.star-rating input:checked ~ label {
    color: #FFD700;
}

/* Toggle switch for checkbox */
.toggle-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-group .toggle-text {
    font-weight: normal;
    font-size: 0.9em;
    line-height: 1.4;
    order: 3; /* Sets the order to be after the toggle switch */
}

.toggle-group .toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 20px;
    transition: background-color 0.3s;
    order: 2; /* Sets the order for the switch */
    margin-left: 10px; /* Space between text and switch */
}

.toggle-group input[type="checkbox"] {
    display: none;
}

.toggle-switch:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: left 0.3s;
}

.toggle-group input[type="checkbox"]:checked + .toggle-switch {
    background-color: #000;
}

.toggle-group input[type="checkbox"]:checked + .toggle-switch:after {
    left: 22px;
}

.submit-review-btn {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
}

/* --- DESKTOP VIEW ADJUSTMENT --- */
@media (min-width: 768px) {
    .reviews-page-content {
        padding: 100px 10%;
    }

    .review-list, .review-form-container {
        max-width: 800px;
        margin: 0 auto;
    }
}
/* --- FAQ PAGE STYLING --- */
.faq-content {
    padding: 80px 20px 40px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.faq-item p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 40px 0;
}

/* --- DESKTOP VIEW ADJUSTMENT --- */
@media (min-width: 768px) {
    .faq-content {
        padding: 100px 10%;
    }
    .faq-item h3 {
        font-size: 2.2em;
    }
}
/* --- RATES PAGE STYLING --- */
.rates-content {
    padding: 80px 20px 40px;
}

.rate-item {
    margin-bottom: 20px;
}

.rate-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.rate-item .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    font-style: italic;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.rate-item p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #666;
}

.rate-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 40px 0;
}

.booking-button {
    display: block;
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
}

/* --- DESKTOP VIEW ADJUSTMENT --- */
@media (min-width: 768px) {
    .rates-content {
        padding: 100px 10%;
    }
    .rate-item h3 {
        font-size: 2.2em;
    }
}
/* --- CONTACT PAGE STYLING --- */
.contact-content {
    padding: 80px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Ensures the content is centered vertically */
}

.contact-card {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 50px 30px;
    width: 100%;
    max-width: 600px;
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 5px;
}

.contact-card .subheading {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-card p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 10px 0;
}

.contact-card a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #A3A3A3;
}

/* --- DESKTOP VIEW ADJUSTMENT --- */
@media (min-width: 768px) {
    .contact-card h2 {
        font-size: 3em;
    }
}
/* --- VERIFICATION PAGE STYLING --- */
.verification-content {
    padding: 80px 20px 40px;
    text-align: center;
}

.verification-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 30px;
}

.verification-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.verification-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
}

/* --- DESKTOP VIEW ADJUSTMENT --- */
@media (min-width: 768px) {
    .verification-content {
        padding: 100px 10%;
    }
    .verification-images {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
    .verification-image {
        max-width: 300px;
    }
}