/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

/* Headings use Playfair for brand look */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Main content of the page */
main {
    flex: 1; /* Pushes the footer to the bottom */
}



/* Fix Hero Section - Remove Background Image */
#hero {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10; /* Ensure logo stays on top */
    background: transparent; /* Remove conflicting background */
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
}

/* Fix Logo Visibility */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 20; /* Ensure it's above slideshow */
    position: relative;
}

    /* Ensure Logo is Visible and Not Overwritten */
    .hero-content img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }

        .hero-content img:hover {
            transform: scale(1.1); /* Slight zoom effect on hover */
            color: #d65a7f; /* Stylish hover color */
            transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease; /* Smooth hover effects */
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow effect */
        }

/* Fix Slideshow Position */
#hero-slider,
#hero-slider-mobile {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 5; /* Ensure it's behind the hero content */
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
}

/* Show desktop slider by default, hide mobile */
.hero-slider-desktop {
    display: block;
}

.hero-slider-mobile {
    display: none;
}

/* On mobile screens, hide desktop and show mobile slider */
@media (max-width: 768px) {
    .hero-slider-desktop {
        display: none;
    }
    
    .hero-slider-mobile {
        display: block;
    }
}

/* Ensure Images Fill the Entire Slideshow */
.hero-slide {
    display: none;
    width: 100vw;
    height: 100vh;
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
}

    .hero-slide img {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        margin: 0; /* Ensure no margin */
        padding: 0; /* Ensure no padding */
    }


/* Fix Animation for Slideshow */
.fade {
    animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* Hero Section Fade-in on Page Load */
#hero {
    animation: heroFadeIn 1.2s ease-out;
}

.hero-slider-desktop,
.hero-slider-mobile {
    animation: heroFadeIn 1.5s ease-out;
}

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


/* Navbar General Styling */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: center; /* Center navigation on desktop */
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

    #navbar ul {
        list-style: none;
        display: flex;
        justify-content: center;
        padding: 10px;
    }

        #navbar ul li a {
            font-family: 'Poppins', sans-serif;
            color: white;
            margin: 0 10px; /* Reduced from 15px to save space */
        }

    #navbar .logo {
        font-family: 'Playfair Display', serif; /* Modern serif font for elegance */
        font-size: 1.8rem;
        font-weight: bold;
        color: #f9f9f9;
        text-transform: uppercase;
        width: auto;
        height: auto;
        margin-top: 13px;
        position: absolute; /* Position logo absolutely on desktop */
        left: 20px; /* Keep logo on the left side */
    }

        #navbar .logo img {
            width: auto;
            height: 56px; /* slightly smaller for consistency */
            max-width: none;
        }

/* Language Switcher - Position on right side (desktop only) */
.lang-switcher {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 8px;
    margin: 0 !important;
}

/* Default (Desktop) Navbar Links */
#nav-links {
    display: flex; /* Ensure visible on desktop */
    gap: 5px; /* Reduced from 10px to fit more items */
    list-style: none;
    align-items: center;
}

    /* Collapsed and Expanded States for Mobile */
    #nav-links.collapsed {
        display: none; /* Hidden when collapsed */
    }

    #nav-links.expanded {
        display: flex; /* Visible when expanded */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        padding: 20px;
        text-align: center;
        z-index: 999;
    }

    #nav-links li {
        margin: 10px 0;
    }

    #nav-links a {
        text-decoration: none;
        font-family: 'Poppins', sans-serif; /* Clean and modern sans-serif font */
        font-size: 1.2rem;
        color: white;
        padding: 15px;
        transition: color 0.3s ease;
    }

        #nav-links a:hover {
            color: #d65a7f; /* Stylish hover color */
        }

        #nav-links a::after {
            content: '';
            display: block;
            height: 2px;
            width: 0;
            background: #d65a7f; /* Underline hover effect */
            transition: width 0.3s;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        #nav-links a:hover::after {
            width: 100%; /* Animate underline on hover */
        }

/* Desktop navigation styling (above 1800px - full menu visible) */
@media (min-width: 1801px) {
    #nav-links {
        gap: 5px; /* Tight spacing for all menu items */
    }
    
    #nav-links a {
        font-size: 1rem; /* Comfortable reading size */
        padding: 10px 12px; /* Compact but clickable */
        text-decoration: none;
        color: white;
        transition: color 0.3s ease;
        position: relative;
    }
    
    #nav-links a:hover {
        color: #d65a7f;
    }
}

/* Hamburger Menu - Show at 1800px and below */
.hamburger-menu {
    display: none; /* Hidden by default */
}

@media (max-width: 1800px) {
    /* Show hamburger menu at 1800px and below */
    .hamburger-menu {
        display: block;
        font-size: 2.5rem;
        cursor: pointer;
        color: white;
        margin-top: -8px;
        transition: transform 0.3s ease, color 0.3s ease; /* Smooth hover animation */
    }

        .hamburger-menu:hover {
            transform: scale(1.2) rotate(10deg); /* Slightly enlarge and rotate */
            color: #d65a7f; /* Change color on hover */
        }

    /* Reset logo positioning on mobile */
    #navbar .logo {
        position: static; /* Reset absolute positioning */
        left: auto;
    }

    /* Reset navbar alignment on mobile */
    #navbar {
        justify-content: space-between; /* Logo left, hamburger right */
    }

    /* Reset language switcher positioning on mobile */
    .lang-switcher {
        position: static;
        right: auto;
        justify-content: center;
        width: 100%;
    }

    #nav-links {
        display: none;
        flex-direction: column;
    }
}

/* Sections */
section {
    padding-top: 80px;
    padding: 60px 20px;
    margin-bottom: 20px;
}

    section h1 {
        text-align: center;
        font-size: 2rem; /* Larger than h2 */
        font-weight: bold;
        margin-bottom: 30px;
        color: #333; /* Default text color */
    }

        section h1:hover {
            transform: scale(1.1); /* Similar hover effect */
            color: #d65a7f; /* Match the hover color of h2 */
            text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4); /* Slightly stronger shadow for emphasis */
            transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
        }

    section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 20px;
    }

        section h2:hover {
            transform: scale(1.1);
            color: #d65a7f;
            text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
        }

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}




.gallery-accordion {
    margin: 20px 0;
}

.accordion-btn {
    background-color: #444;
    color: white;
    padding: 10px 20px;
    border: none;
    text-align: left;
    width: 100%;
    font-size: 1.2rem;
    font-family: 'Corben', sans-serif; /* Match font style */
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin-bottom: 5px;
}

    .accordion-btn:hover {
        background-color: #333;
        transform: translateY(-2px); /* Lift effect */
        box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
    }

.accordion-content {
    display: none; /* Hidden by default */
    overflow: hidden;
    padding: 10px 0;
}

    .accordion-content .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 10px;
    }



/* Expanded State */
.category.expanded .accordion-content {
    display: block;
    grid-template-columns: repeat(4, 1fr); /* Four columns per row */
    max-height: 2000px;
}



.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four columns per row */
    gap: 15px; /* Space between images */
}

    .gallery-grid img {
        width: 100%; /* Full width for responsive images */
        height: auto;
        border-radius: 5px;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

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

/* Box Photography - smaller images with 1:1 aspect ratio */
.box-photography-grid {
    max-width: 50%; /* Make the entire grid narrower */
    margin: 0 auto; /* Center the grid */
}

.box-photography-grid img {
    aspect-ratio: 1 / 1; /* Force square 1:1 aspect ratio */
    object-fit: cover; /* Crop to fit the square */
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* Set to one column for mobile */
    }

    .accordion-content .gallery-grid {
        grid-template-columns: 1fr; /* Set to one column for mobile */
    }
}


/* FAQ Section Styling */
#faq .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

#faq .faq-question {
    width: 100%;
    background-color: #fff;
    color: #333;
    font-weight: bold;
    padding: 15px;
    text-align: left;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
}

    #faq .faq-question:hover {
        background-color: #d65a7f;
    }

#faq .faq-answer {
    display: none;
    padding: 10px 15px;
    color: #555;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    display: block !important;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Contact Section Styling */
#contact {
    background-color: #fff; /* Light background to separate from the rest */
}

    #contact p {
        margin-bottom: 10px; /* Reduce the space between paragraphs */
        line-height: 1.5; /* Adjust line height for readability */
    }

        #contact p i {
            margin-right: 2px; /* Space between icon and text */
            color: #d65a7f; /* Accent color for icons */
            font-size: 1.4rem;
        }

    #contact a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
    }

        #contact a:hover {
            color: #d65a7f; /* Match icon color on hover */
        }

    /* Gallery Styles in Contact Section */
    #contact .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

@media (max-width: 768px) {
    #contact .gallery-grid {
        grid-template-columns: 1fr; /* Set to one column for mobile view */
    }
}

    /* Contact Form Styling */
    #form {
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
        text-align: left;
        max-width: 600px; /* Ensuring consistent width */
        margin: 20px auto; /* Center the form */
        display: flex;
        flex-direction: column;
    }

        #form h2 {
            text-align: center;
            color: #333;
            margin-bottom: 20px; /* Add some spacing below the heading */
        }

        #form label {
            margin-bottom: 5px;
            font-weight: bold;
            color: #333;
        }

        #form input[type="text"],
        #form textarea {
            width: 100%; /* Make inputs take up the full width of their container */
            box-sizing: border-box; /* Include padding and borders in the element's total width */
            margin-bottom: 15px;
            padding: 10px;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        #form input[type="submit"] {
            background-color: #444; /* Initial button color */
            color: white; /* Button text color */
            padding: 10px 20px; /* Button padding */
            border: none; /* Remove border */
            border-radius: 5px; /* Rounded corners */
            cursor: pointer; /* Pointer cursor on hover */
            font-size: 1rem; /* Font size */
            transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease; /* Smooth hover animation */
        }

            #form input[type="submit"]:hover {
                background-color: #333; /* Darker background on hover */
                color: #fff; /* Ensure text color is white for better contrast */
                transform: scale(1.1); /* Slightly enlarge the button */
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow effect */
            }

            #form input[type="submit"]:active {
                transform: scale(0.98); /* Slightly shrink the button on click */
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Adjust shadow for active state */
            }



/* Follow Us Section Styling  */
#follow-us {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0px;
}



/* Follow Us Section Styling - Mobile Adjustment */
@media (max-width: 768px) {
    #follow-us .social-icons a img {
        width: 30px; /* Reduce icon size for mobile */
        height: 30px; /* Maintain aspect ratio */
    }

    #follow-us h2 {
        font-size: 1.8rem;
    }
}


/* Footer Section - Classic Centered & Elegant */
footer {
    text-align: center;
    color: #333;
    margin-top: auto;
    margin-bottom: 0;
    padding: 15px 20px 10px;
    background-color: #fff;
    border-top: 2px solid #d65a7f;
    width: 100%;
}

    footer::after, footer::before {
        content: "";
        display: none;
    }

    footer p {
        font-size: 0.85rem;
        font-family: 'Poppins', sans-serif;
        color: #555;
        margin: 8px 0 0 0;
        font-weight: 400;
    }

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a img {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
    opacity: 0.85;
}

    .social-icons a img:hover {
        transform: translateY(-3px);
        opacity: 1;
    }

/* Mobile adjustments for footer */
@media (max-width: 768px) {
    footer {
        padding: 12px 15px 8px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icons a img {
        width: 30px;
        height: 30px;
    }
    
    footer p {
        font-size: 0.8rem;
        margin-top: 6px;
    }
}

#scrollToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    background-color: #d65a7f;
    color: white;
    border: none;
    width: 40px; /* Make width equal to height */
    height: 40px; /* Make height equal to width */
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(100px);
}

    #scrollToTopBtn.show {
        opacity: 1;
        transform: translateY(0);
    }

    #scrollToTopBtn:hover {
        background-color: #333;
        transform: scale(1.1);
    }


.lg-next, .lg-prev {
    display: block !important;
}

    .lg-next:hover, .lg-prev:hover {
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
    }



/* Lightbox Styling */
#lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

    #lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }

/* Navigation Buttons */
.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 2rem;
    z-index: 1001;
    border-radius: 5px;
}

#prev {
    left: 10%;
}

#next {
    right: 10%;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    color: black;
}


#prices h2 {
    text-align: left;
    margin-bottom: 0px;
    margin-top: 25px;
}


/* Contact Section Styling */
#gallery2 {
    background-color: #fff; /* Light background to separate from the rest */
}

    #gallery2 p {
        margin-bottom: 10px; /* Reduce the space between paragraphs */
        line-height: 1.5; /* Adjust line height for readability */
        text-align: center; 
        font-size: 1.2rem;
    }


    #gallery2 .btn-prices {
        display: inline-block;
        padding: 10px 20px;
        font-size: 1rem;
        color: white;
        background-color: #444; /* Match the navbar/button color */
        cursor: pointer;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

        #gallery2 .btn-prices:hover {
            background-color: #333; /* Slightly darker hover effect */
            transform: scale(1.05); /* Subtle zoom on hover */
        }

/* Responsive Calculator Styling */
.calculator {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    text-align: left;
}

    /* Make dropdowns full-width */
    .calculator select {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: white;
        font-family: 'Poppins', sans-serif;
        transition: border-color 0.3s ease;
    }

    /* Space out dropdowns */
    .calculator label {
        display: block;
        font-weight: bold;
        color: #333;
        margin-top: 15px;
    }

    /* Fix font size for mobile */
    .calculator .total {
        font-size: 1.5rem;
        font-weight: bold;
        color: #d65a7f;
        margin-top: 20px;
    }

/* Align to the left on desktop */
@media (min-width: 768px) {
    .calculator {
        margin-left: 0; /* Aligns the calculator to the left */
    }
}

/* Tighter navigation spacing for medium-large screens (1400px - 2000px) */
@media (min-width: 1400px) and (max-width: 2050px) {
    #nav-links {
        gap: 2px; /* Very tight spacing to prevent wrapping */
    }
    
    #navbar ul li a {
        margin: 0 6px; /* Minimal margins */
        font-size: 0.92rem; /* Slightly smaller to save horizontal space */
        padding: 8px 10px; /* Reduce padding */
    }
}

/* Improve mobile responsiveness */
@media (max-width: 767px) {
    .calculator {
        width: 90%;
        max-width: none;
        padding: 15px;
        margin-left: auto;
        margin-right: auto;
    }

        .calculator select {
            font-size: 1rem;
            padding: 10px;
        }

        .calculator label {
            font-size: 1rem;
            margin-top: 10px;
        }

        .calculator .total {
            font-size: 1.3rem;
        }
}


/* A11y utility */
.visually-hidden {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Focus Indicators - Accessibility */
*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 3px solid #d65a7f;
  outline-offset: 2px;
  border-radius: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #d65a7f;
  outline-offset: 3px;
}

/* Scroll Animation Classes */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}
