@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

/* Logo and Brand Name */
#logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#logo-link .logo {
    width: 60px;
    height: auto;
    margin-right: 10px;
}

#brand-name {
    text-align: left;
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    margin-left: 1px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

/* Header */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 40px;
    background: #E3E6F3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
}

/* Specific styles for girls.html */
.girls-page #header {
    background-color: #e0aeae; 
}

/* Navbar */
#navbar {
    margin-top: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
}

#navbar li a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    transition: 0.3s ease;
    position: relative; /* Ensure ::after is positioned correctly */
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a:hover::after,
#navbar li a.active::after {
    content: "";
    width: 30%;
    height: 2px;
    background-color: #088178;
    position: absolute;
    bottom: -4px; 
    left: 5px; 
}

#navbar li a i {
    font-size: 20px;
    color: #1a1a1a; /* Same color as other text links */
    transition: 0.3s ease;
}

#navbar li a:hover, #navbar li a i:hover {
    color: #088178; /* Hover effect for both text and cart icon */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan',sans-serif;
}

            h1 {
                font-size: 50px;
                line-height: 64px;
                color: #222;
            }

            h2 {
                font-size: 3rem; /* Larger font size for heading */
                font-weight: 700; /* Make the heading bold */
                color: #222; /* Dark color for contrast */
                
                letter-spacing: 1.5px; /* Add some spacing between letters */
                text-transform: uppercase; /* Make the heading all uppercase */
                margin-bottom: 10px; /* Add space below the heading */
            }

            h4 {
                font-size: 20px;
                color: #222;
            }

            h6 {
                font-weight: 600;
                font-size: 12x;
            }

            p {
                font-size: 1.5rem; /* Slightly larger font size for description */
                color: #606060; /* Subtle gray color for description */
                font-family: 'Spartan', sans-serif; /* Clean, modern font */
                line-height: 1.6; /* Improve readability with line height */
                font-weight: 800; /* Add some weight to the description text */
                margin-bottom: 20px; /* Add space below the paragraph */
            }

/* Styling for the Product 1 Section Heading and Description */


.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s ease;
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transition: 0.2s ease;
}

body {
    width: 100%;
}






/* Home Page */
#hero {
    background-image: url(https://amber-designer.s3.us-east-2.amazonaws.com/images/hero4.png);
    width: 100%;
    height: 95vh;
    background-size: cover;
    background-position: top center;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px; /* Add padding to account for the height of the navbar */
}

#hero h4 {
    padding-bottom: 15px;
}


/* Text container styling */
/* Text container styling */
#hero-text {
    position: absolute;
    top: 55%;
    left: 5%;
    transform: translateY(-50%);
    color: #000;
    padding: 15px; /* Add padding around the text */

    background-color: rgba(255, 255, 255, 0.75); /* Semi-transparent background */
    border-radius: 10px; /* Rounded corners for modern look */
}

#hero-text h1 {
    font-size: 2rem; /* Increase font size */
    font-weight: 900; /* Make it bolder */
    color: #000; /* Darker color for contrast */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3); /* Add subtle shadow */
}

#hero-text p {
    font-size: 1.5rem; /* Increase paragraph font size */
    margin-top: 20px;
    color: #606060; /* Lighter gray for supporting text */
    font-weight: bold;
}

#hero-text .price {
    font-size: 3rem;
    color: #6a1b9a; /* Highlight price in a different color */
    margin-top: 15px;
    font-weight: 700;
}

#hero-text .cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 30px;
    background-color: #c9732c; /* Button background color */
    color: #ffffff; /* Button text color */
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

#hero-text .cta-button:hover {
    background-color: #e76f51; /* Darken button on hover */
}

#hero button {
    background-image: url(https://amber-designer.s3.us-east-2.amazonaws.com/images/button.png);
    background-color: transparent;
    color: #088178;
    border: 0;
    padding: 14px 80px 14px 65px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

/*----------------------------------------- GIRLS.HTML---------------------------------------------------------------------------------------------------------------------------------*/
.section-title {
    margin-top: 60px;
    padding-top: 80px;
    border-top: 1px solid #e1e1e1;
}

#boys-section {
    margin-top: 80px;
}


/* Wishlist Button Styling */
.pro {
    position: relative;
    overflow: hidden;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.75); /* White with slight transparency */
    border: none;
    border-radius: 20%;
    padding: 9px;
    cursor: pointer;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); /* Blur effect */
    transition: transform 0.2s ease, background-color 0.3s ease; /* Add transform to transition */
}

.wishlist-btn i {
    color: #888; /* Default icon color */
    font-size: 20px; /* Adjust icon size */
}

.wishlist-btn.active i {
    color: #e74c3c; /* Red color when active */
}

/* Add animation effect on click */
.wishlist-btn.active {
    transform: scale(1.2); /* Slightly increase size on click */
}
/*----------------------------------------- CART-------------------------------------------------------------------------------------------------------------------------------*/
.wishlist-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
}

.wishlist-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
}

.wishlist-item button {
    margin-left: auto;
    padding: 5px 10px;
    background-color: #f44336;
    color: white;
    border: none;
    cursor: pointer;
}






/*----------------------------------------- GIRLS.HTML-------------------------------------------------------------------------------------------------------------------------------*/

/* Contact Section Styling */
#contact-section {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}

.icon-container {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between the icons */
}

.icon {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.icon i {
    font-size: 2.5rem; /* Icon size */
    color: #088178; /* Icon color */
}

.icon p {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #333; /* Text color */
}

.icon:hover {
    transform: translateY(-10px); /* Hover effect to lift icon */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

/* Specific styling for Google Maps icon */
.google-maps i {
    color: #d9534f; /* Red color for Google Maps icon */
}

/* Specific styling for Instagram icon */
.instagram i {
    color: #e4405f; /* Instagram brand color */
}


#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .fe-box {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

#feature .fe-box img{
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
    background-color: #cdebbc;
}

#feature .fe-box:nth-child(3) h6 {
    background-color: #d1e8f2;
}

#feature .fe-box:nth-child(4) h6 {
    background-color: #cdd4f8;
}

#feature .fe-box:nth-child(5) h6 {
    background-color: #f6dbf6;
}

#feature .fe-box:nth-child(6) h6 {
    background-color: #fff2e5;
}

/* Section styling */
#product1 {
    text-align: center;
}

#product1 .pro-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px; 
    padding-top: 20px;
}



/* Remove borders and padding around individual products */
#product1 .pro {
    position: relative;
    overflow: hidden;
    padding: 0; /* Reduce padding */
    margin: 0; /* Remove margin */
    
}

#product1 .pro img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images cover their container */
    display: block;
}

/* Optional hover effect for a more dynamic look */
#product1 .pro:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Remove any extra padding or borders from descriptions */
#product1 .pro .des {
    display: none; /* Hide description for tile-like layout */
}


/* Centered 'View All' Button */
.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.view-all-btn {
    font-size: 27px;
    font-weight: 700;
    padding: 12px 30px;
    width: 250px;
    height: 60px;
    color: #fff;
    margin-top: 10px;
    background: rgba(26, 180, 52, 0.75); /* Semi-transparent gradient */
    text-decoration: none;
    transition: all 0.3s ease;
    border: none; /* Remove border */
    cursor: pointer; /* Add pointer cursor on hover */
    border-radius: 5px; /* Optional: adds rounded corners */
    display: block !important; /* Force button to always be visible */
    visibility: visible !important; /* Ensure button is visible */
    opacity: 1 !important; /* Ensure button is not transparent */

    backdrop-filter: blur(5px); /* Adds a slight blur effect behind the button */
}

.view-all-btn:hover {
    background: linear-gradient(to right, #309117, #46af4c); /* Reverse gradient on hover */
    box-shadow: 0 4px 15px rgba(47, 184, 174, 0.3); /* Optional: adds subtle shadow on hover */
}

/* Force Girls section View All button to always be visible */
#seeAllGirls {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Simple blur-to-clear loading animation for all images */
.pro img {
    filter: blur(2px);
    transition: filter 0.15s ease-out;
}

.pro img.loaded {
    filter: blur(0);
}

/* Ensure View All button is never affected by image loading styles */
.view-all-btn,
.view-all-container,
#seeAllGirls {
    filter: none !important;
    transition: none !important;
}

/* Lightbox styling */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9); /* Black background with opacity */
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack image and buttons vertically */
}

.lightbox img {
    max-width: 80%;
    max-height: 75%;
    margin: auto;
    display: block;
    transition: all 0.3s ease;
}

.lightbox img.reduced-size {
    max-height: 40vh;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
}

.lightbox .prev, .lightbox .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: #fff;
    font-weight: bold;
    font-size: 40px;
    background-color: rgba(73, 67, 67, 0.2);
    
}

.lightbox .prev {
    left: 0;
}

.lightbox .next {
    right: 0;
}

/* Buttons inside lightbox */
.lightbox-buttons {
    margin-top: 20px; /* Add space between image and buttons */
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
}

.book-now-btn {
    background: linear-gradient(135deg, #088178 0%, #1c9239 100%); /* Gradient background */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px; /* Rounded corners */
    font-size: 22px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(8, 129, 120, 0.2); /* Subtle shadow */
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 180px; /* Ensure consistent width */
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(8, 129, 120, 0.3);
    background: linear-gradient(135deg, #1c9239 0%, #088178 100%); /* Reverse gradient on hover */
}

.book-now-btn:hover::before {
    left: 100%;
}

/* Specific styling for Check Dates button */
#check-dates-btn {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

#check-dates-btn:hover {
    background: linear-gradient(135deg, #357abd 0%, #4a90e2 100%);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(https://amber-designer.s3.us-east-2.amazonaws.com/images/banner/b2.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 40vh;
}

#banner h4 {
    color: #fff;
    font-size: 16px;
}

#banner h2 {
    color: #fff;
    font-size: 30px;
    padding: 10px 0;
}

#banner h2 span {
    color: #ef3636;
}

#banner button:hover {
    background-color: #088178;
    color: #fff;
}


/* Social Section Styling */
#social-section {
    width: 100%;
    padding: 40px 20px;
    background-color: #f8f8f8;
}

.social-container {
    display: flex;
    justify-content: space-around; /* Space between both icons */
    align-items: center;
    max-width: 1200px; /* Limit container width */
    margin: 0 auto; /* Center container */
}

/* Social Box Styling */
.social-box {
    width: 50%; /* Each box takes up 45% of the container */
    max-width: 300px; /* Set a maximum width for larger screens */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-container {
    width: 100%;
    height: 0;
    padding-bottom: 100%; 
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Reduce icon size (Google Maps and Instagram logos) */
.social-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px; /* Adjust this value to change icon size */
    height: auto; /* Maintain aspect ratio */
}

.social-bg {
    position: absolute;
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the entire container */
}

.social-icon {
    z-index: 2; /* Keep logo in front */
}

.social-bg {
    z-index: 1; /* Background behind logo */
    opacity: 0; /* Initially hidden */
    filter: blur(1px); /* Blur effect */
}

/* Hover effect for icons - makes them jump */
.social-box:hover .social-icon {
    transform: translateY(-10px); /* Move the icon up by 10px */
    transition: transform 0.3s ease; /* Smooth transition */
}

.social-box:hover .social-bg {
    transform: scale(1.05); /* Slightly enlarge the background image */
    transition: transform 0.3s ease; /* Smooth transition */
}

/* Hover effect - show background image but keep logo visible */
.social-box:hover .social-bg {
    opacity: 0.8; /* Make background image visible on hover with slight transparency */
}

/* Text below each icon */
.social-box p {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}




/*-----------------------------------------------WhatsApp------------------------------------------------------------------------------*/

/* WhatsApp Section Styling */
#whatsapp-connect {
    width: 100%;
    padding: 0px 0;
    background-color: #f0f0f0; /* Light gray background */
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.whatsapp-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

/* Left Side Image Styling */
.whatsapp-image {
    width: 30%; /* Takes up 45% of the container */
}

.whatsapp-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional rounded corners */
}

/* Left Side Image Styling */
.whatsapp-image2 {
    width: 30%; /* Takes up 45% of the container */
}

.whatsapp-image2 img {
    width: 50%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional rounded corners */
}

/* Right Side Info Styling */
.whatsapp-info {
    width: 50%; /* Takes up 50% of the container */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center content horizontally */
}

/* WhatsApp Logo Styling */
.whatsapp-logo {
    width: 130px; /* Increase size of WhatsApp logo */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space below logo */
}

/* Heading Text Styling */
.whatsapp-info h2 {
    font-family: 'Montserrat', sans-serif; /* Use Montserrat font */
    font-size: 36px; /* Adjust text size for heading */
    font-weight: 700; /* Bold weight for heading */
    color: #5e615f; /* WhatsApp green color for text */
    margin-bottom: 20px; /* Space below the heading text */
    text-align: center; /* Center the text below the logo */
    text-transform: none; /* Ensure text is not in all caps */
}

/* WhatsApp Logo and Button Styling */
.whatsapp-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.whatsapp-logo-girls {
    width: 60px; /* Adjust size of WhatsApp logo */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between logo and button */
    margin-top: 10px;
}


/*-----------------------------------------------WhatsApp------------------------------------------------------------------------------*/



/*-----------------------------------------------BOOKING------------------------------------------------------------------------------*/
    /* Booking Info Styling */
.booking-info {
    text-align: center; /* Center all content */
}

.booking-info h2 {
    font-size: 40px; /* Larger text size for booking info */
    font-weight: bold;
    margin-bottom: 20px; /* Space below the heading text */
}

.booking-text {
    color: #696b6a; /* WhatsApp green color for "Booking:" */
}

.phone-number {
    color: #474242; /* Black color for phone number */
}














#newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-image: url(https://amber-designer.s3.us-east-2.amazonaws.com/images/banner/b14.png);
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #021022;
    margin-top: 0;
    margin-bottom: 0;
}

#newsletter h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

#newsletter p {
    font-size: 14px;
    font-weight: 600;
    color: #818EA0;
}

#newsletter p span{ 
    color: #ffbd27;
}

#newsletter .form {
    display: flex;
    width: 40%;
}

#newsletter input {
    height: 3.125rem;
    padding: 0 1.25rem;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#newsletter button {
    background-color: #088178;
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
/* Success Message Styling */
/* Success Message Styling */
.success-message {
    color: green; /* Green color for success */
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

/* Error Message Styling */
.error-message {
    color: red; /* Red color for error */
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}


/* General Footer Styling */
footer {
    background-color: #021022; 
    color: #fff; 
    padding: 20px;
}

footer .logo {
    display: block;
    width: 60px; /* Adjust logo size */
    margin-left: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-bottom: 0;
}

footer h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
}

footer p, footer a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #fff; /* White text for links and paragraphs */
}

footer a:hover {
    color: #088178; /* Hover effect for links */
}

/* Follow Us Section Styling */
.follow-us {
    margin-top: 30px;
}

.follow-us h4 {
    font-size: 16px;
}

.icon-container2 {
    display: flex; /* Align icons horizontally */
    justify-content: flex-start;
}

.icon-container2 a {
    color: #fff; /* White icon color */
    font-size: 24px; /* Adjust icon size */
    margin-right: 15px; /* Space between icons */
    margin-bottom: 0;
}

.icon-container a:hover {
    color: #088178; /* Hover effect for icons */
}

/* Copyright Text Styling */
.copyright {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}


/* About Us */
/* About Us Section Styling */
#about-us-section {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Light background color */
}

#about-us-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

/* Content Wrapper for Image and Text */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left Side (Image) - 30% */
.about-image {
    width: 30%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Optional rounded corners */
}

/* Right Side (Text) - 70% */
.about-text {
    width: 65%; /* Slightly less than 70% to account for spacing */
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #606060; /* Subtle gray color for readability */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column; /* Stack image and text vertically */
        align-items: center; /* Center align on smaller screens */
        text-align: center; /* Center text on smaller screens */
    }

    .about-image,
    .about-text {
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 20px; /* Add space between image and text */
    }
}









/* Shop Page */

#page-header {
    background-image: url(https://amber-designer.s3.us-east-2.amazonaws.com/images/banner/b1.jpg);
    width: 100%;
    height: 30vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header h2,
#page-header p {
    color: #fff;
}

#pagination {
    text-align: center;
}

#pagination a {
    text-decoration: none;
    background-color: #088178;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}

#pagination a i {
    font-size: 16px;
    font-weight: 600;
}

#page-header.about-header {
    background-image: url(https://amber-designer.s3.us-east-2.amazonaws.com/images/about/banner.png);
}


#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
    position: absolute;
    top: 30px;
    left: 30px;
    color: black;
    font-size: 24px;
    z-index: 10000;
}








/* Media Query */

@media (max-width: 1200px) {
    #product1 .pro-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
}

@media (max-width: 900px) {
    #product1 .pro-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
}


@media (max-width: 799px) {
    .section-p1 {
        padding: 40px 40px;
    } 

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #E3E6F3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active {
        right: 0px;
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }

    #close {
        display: block;
    }

    #lg-bag {
        display: none;
    }

    /* #hero {
        height: 70vh;
        padding: 0 80px;
        background-position: top 30% right 30%;
    } */

    #feature {
        justify-content: center;
    }

    #feature .fe-box {
        margin: 15px 15px;
    }

    #product1 .pro-container {
        justify-content: center;
        grid-template-columns: repeat(3, 1fr); /* Force 2 columns */
        
    }

    #banner {
        height: 20vh;
    }

    #sm-banner .banner-box {
        min-height: 100%;
        height: 30vh;
    }

    #banner3 {
        padding: 0 40px;
    }

    #banner3 .banner-box {
        width: 28%;
    }

    #newsletter .form {
        width: 70%;
    }

    /* Contact Page */

    #form-details {
        padding: 40px;
    }

    #form-details form {
        width: 50%;
    }

    #brand-name{
        font-size: 2.5rem;
    }
    #logo-link .logo {
    width: 58px;
    height: auto;
    margin-right: 10px;

    }
}




/* media for RESPONSIVE */
@media (max-width: 500px) {
    #header {
        padding: 10px 10px;
    }

    #brand-name{
        font-size: 28px;
        color: #000;
    }
    #logo-link .logo {
    width: 42px;
    height: auto;
    margin-right: 5px;
    margin-left: 0;

    }
    


    

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #E3E6F3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active {
        right: 0px;
        width: 200px;
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }
    
    #close {
        display: block;
    }



    


    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;   
    }

    #hero {
        padding: 0 20px;
        background-position: 55%;
    }
    #hero-text {
        position: absolute;
        top: 60%;
        font-size: 20px;
        right: 15%;
        transform: translateY(-55%);
        left: 0%;
    }

    #feature {
        justify-content: space-between;
    }

    #feature .fe-box {
        width: 155px;
        margin: 0 0 15px 0;
    }

    #product1 .pro-container {
        gap: 5px; 
        padding-top: 10px;
    }
    .section-p1 {
        padding: 60px 10px;
    }
    
    #banner {
        height: 40vh;
    }

    #sm-banner .banner-box {
        height: 40vh;
        margin-bottom: 20px;
    }

    #banner3 {
        padding: 0 20px;
    }

    #banner3 .banner-box {
        width: 100%;
    }

    #newsletter {
        padding: 40px 20px;
    }

    #newsletter .form {
        width: 100%;
    }

    footer .copyright {
        text-align: start;
    }

    /* Single Product */
    #productdetails {
        display: flex;
        flex-direction: column;
    }

    #productdetails .single-pro-image {
        width: 100%;
        margin-right: 0px;
    }

    #productdetails .single-pro-details {
        width: 100%;
    }

    /* Blog Page */
    #blog {
        padding: 100px 20px 0 20px;
    }

    #blog .blog-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #blog .blog-img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    #blog .blog-details {
        width: 100%;
    }

    /* About Page */
    
    #about-head {
        flex-direction: column;
    }

    #about-head img {
        width: 100%;
        margin-bottom: 20px;
    }

    #about-head div {
        padding-left: 0px;
    }

    #about-app .video {
        width: 100%;
    }

    /* Contact Page */

    #contact-details {
        flex-direction: column;
    }

    #contact-details .details {
        width: 100%;
        margin-bottom: 30px;
    }

    #contact-details .map {
        width: 100%;
    }

    #form-details {
        margin: 10px;
        padding: 30px 10px;
        flex-wrap: wrap;
    }

    #form-details form {
        width: 100%;
        margin-bottom: 30px;
    }

    /* Cart Page */

    #cart-add {
        flex-direction: column;
    }

    #cart-add .coupon {
        width: 100%;
    }

    #cart-add .subtotal {
        width: 100%;
        padding: 20px;
    }




    .wishlist-btn {
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: rgba(255, 255, 255, 0.7); /* White with slight transparency */
        border: none;
        border-radius: 20%;
        padding: 5px;
        cursor: pointer;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2); /* Blur effect */
        transition: transform 0.2s ease, background-color 0.3s ease; /* Add transform to transition */
    }
    
    .wishlist-btn i {
        color: #888; /* Default icon color */
        font-size: 16px; /* Adjust icon size */
    }
    
    .wishlist-btn.active i {
        color: #e74c3c; /* Red color when active */
    }
    
    /* Add animation effect on click */
    .wishlist-btn.active {
        transform: scale(1.2); /* Slightly increase size on click */
    }


    .booking-text, .phone-number {
        display: block; /* Ensure both elements are displayed as block elements */
        width: 90%; /* Make them take up full width */
        margin-bottom: 10px; /* Add space between the two lines */
    }
    
    .phone-number{
        font-size: 30px;
    }

    .social-icon{
        width: 100px;
    }
    
    .whatsapp-container {
        flex-direction: column; /* Stack image and info vertically on smaller screens */
        text-align: center; /* Center content for smaller screens */
        padding-left: 0; /* Remove left padding on smaller screens */
        gap: 20px; /* Add space between stacked items */
    }

    .whatsapp-image, .whatsapp-info {
        
        width: 50%; /* Full width for both image and info on smaller screens */
        text-align: center; /* Center button and text on small screens */
        justify-content: center; 
        align-items:center; 
        margin-bottom:20px; 
    }

    .whatsapp-logo {
         margin-bottom: 15px; /* Adjust spacing for smaller screens if needed */
         width: 60%;
    }
    .whatsapp-info h2{
        font-size: 25px;
    }
    
    .lightbox img {
        margin: auto;
        display: block;
        max-width: 100%;
        max-height: auto;
        margin-top: 43px; /* Add space between image and buttons */
    }
    .lightbox .close {
        position: absolute;
        top: 0;
        right: 35px;
        color: #fff;
        font-size: 40px;
    }
     


}





/* 2 toh hone hi chahiye bhai */



.availability-container {
    display: block;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 3px;

    
}

.availability-container button {
    padding: 6px;
    border: none;
    border-radius: 5px;
    margin-right: 2px;
    cursor: pointer;
    
}

.available {
    background-color: #4CAF50;
    color: white;
}

.unavailable {
    background-color: #f44336;
    color: white;
}
.error-message {
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    text-align: center;
}
.copies-count {
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    
    margin-top: 15px;
    text-align: center;
}

/* Payment Form Box Styling */
.payment-form-box {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-form-box.hidden {
    display: none;
}

.payment-form-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    position: relative;
}

.payment-form-content h3 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #088178;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

.cancel-btn, .pay-now-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn {
    background-color: #f5f5f5;
    color: #333;
}

.cancel-btn:hover {
    background-color: #e0e0e0;
}

.pay-now-btn {
    background-color: #088178;
    color: white;
}

.pay-now-btn:hover {
    background-color: #066c65;
}

@media (max-width: 500px) {
    .payment-form-content {
        width: 95%;
        padding: 20px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .cancel-btn, .pay-now-btn {
        width: 100%;
    }

    .lightbox-buttons {
        gap: 15px;
    }
    .book-now-btn {
        min-width: unset;
        padding: 12px 20px;
        font-size: 16px;
    }
}


/* Payment Form - Availability Section */
.availability-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.availability-section h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
}

.payment-availability-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.payment-availability-container button {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

/* Date button states */
.date-available {
    background-color: #4CAF50;
    color: white;
}

.date-unavailable {
    background-color: #f44336;
    color: white;
    opacity: 0.7;
    cursor: not-allowed;
}

.date-selected {
    background-color: #2196F3;
    color: white;
    transform: scale(1.05);
}

/* Total Price Container */
.total-price-container {
    margin-top: 15px;
    padding: 10px;
    background-color: #f7f7f7;
    border-radius: 5px;
    text-align: right;
}

.total-price {
    font-weight: bold;
    font-size: 18px;
    color: #088178;
}

/* Responsive styles */
@media (max-width: 500px) {
    .payment-availability-container {
        justify-content: center;
    }
    
    .payment-availability-container button {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .total-price {
        font-size: 16px;
    }
}

.payment-availability-container p {
    width: 100%;
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 10px 0;
}


/* Homepage product images - load immediately without lazy loading */
body:not(.girls-page) .pro img {
    opacity: 1 !important;
    background: none !important;
    animation: none !important;
    transition: none !important;
}/* Cart images should load immediately without lazy loading - override lazy loading for cart page */
body.girls-page .pro img:not(.lazy-image) {
    opacity: 1 !important;
    background: none !important;
    animation: none !important;
    transition: none !important;
}

/* Homepage logo and other non-social images */
body:not(.girls-page) .logo,
body:not(.girls-page) .whatsapp-logo,
body:not(.girls-page) .lightbox-content {
    opacity: 1 !important;
    background: none !important;
    animation: none !important;
    transition: none !important;
}

/* Critical images - first 18 images with smooth loading transition (girls.html only) */
.girls-page #girlsProductContainer .pro:nth-child(-n+18) img,
.girls-page #boys-section .pro-container .pro:nth-child(-n+18) img {
    opacity: 0.7; /* Start with reduced opacity */
    transition: opacity 0.3s ease-in-out;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

/* When critical images are loaded, fade them in (girls.html only) */
.girls-page #girlsProductContainer .pro:nth-child(-n+18) img.loaded,
.girls-page #boys-section .pro-container .pro:nth-child(-n+18) img.loaded {
    opacity: 1;
    background: none; /* Remove loading animation */
    animation: none;
}

