/* -------------------------------------------------- */
/* Variables & Global Styles                          */
/* -------------------------------------------------- */

:root {
    --primary: #5a1d35;
    --secondary: #8a4d6e;
    --light: #f9f6f5;
    --gold: #d4af37;
    --dark: #1a0f14;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --vh: 1vh;
    --header-shadow-initial: 0 2px 15px rgba(90, 29, 53, 0.9);
    --header-shadow-scrolled: 0 4px 20px rgba(90, 29, 53, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
    height: -webkit-fill-available;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    font-size: clamp(1rem, 0.5vw + 0.8rem, 1.2rem);
    position: relative;
    -webkit-overflow-scrolling: touch;
}

a {
    color: var(--primary);
    text-decoration: none;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

.gallery article img {
    height: 100%;
}

/* -------------------------------------------------- */
/* Button Styles                                      */
/* -------------------------------------------------- */

input[type="button"].down,
input[type="submit"].down,
input[type="reset"].down,
.button.down,
button.down {
    width: 5em;
    height: 5em;
    line-height: 4.5em;
    padding: 0;
    background: url("images/dark-arrow.svg") center center no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.down.anchored {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 5em;
    height: 4.5em;
    margin-left: -2.5em;
    border-radius: 3em 3em 0 0;
    border: 1px solid var(--primary);
    border-bottom: 0;
    animation: pulse 2s infinite ease-in-out;
        
}

.down:hover {
    transform: translateY(-5px) scale(1.05);
    opacity: 0.8;
}

.button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(90, 29, 53, 0.3);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline: none;
}

.button:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(90, 29, 53, 0.5);
}

.button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.button:hover::after {
    left: 100%;
}

.button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.5);
}

/* -------------------------------------------------- */
/* Main Section                                       */
/* -------------------------------------------------- */

.main.style1.inactive >.content {
    opacity: 0;
}

.main.style2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3em 0;
    overflow: hidden;
}

.main.style2 >.content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(90, 29, 53, 0.1);
    opacity: 0.8;
    overflow: hidden;
    margin: 0;
    transform: translateZ(0);
    transition: transform 1s ease, opacity 0.5s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.main.style2.left {
    justify-content: flex-start;
}

.main.style2.right {
    justify-content: flex-end;
}

.main.style2.inactive.left >.content {
    transform: translateX(-100%);
}

.main.style2.inactive.right >.content {
    transform: translateX(100%);
}

/* -------------------------------------------------- */
/* Background Sections                                */
/* -------------------------------------------------- */


#one,
#two {
    background-image: url("images/overlay.png");
    background-size: 256px 256px, cover;
    background-attachment: fixed, fixed;
    background-position: top left, center center;
    background-repeat: repeat, no-repeat;
    animation: backgroundPan 50s linear infinite;
    height: 820px;
}


#one {
    background-image: url("images/overlay.png"), url("../../images/one.jpg");
}

#two {
    background-image: url("images/overlay.png"), url("../../images/two.jpg");
}

/* -------------------------------------------------- */
/* Mobile-specific Background Sections                */
/* -------------------------------------------------- */
@media (max-width: 992px) {
    #one,
    #two {
        background-attachment: scroll;
        background-position: center center;
        height: 720px;
    }


    #one {
        background-image: url("images/overlay.png"), url("../../images/one.jpg");
    }

    #two {
        background-image: url("images/overlay.png"), url("../../images/two.jpg");
    }
}
/* -------------------------------------------------- */
/* Header                                             */
/* -------------------------------------------------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(9px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    z-index: 1000;
    box-shadow: var(--header-shadow-initial);
    transition: var(--transition);
    border-bottom: 1px solid rgba(90, 29, 53, 0.1);
}

@media (max-width: 992px) {
    .header {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        justify-items: center;
        padding: 1rem;
    }

    .logo-frame {
        grid-column: 2;
        justify-self: center;
    }

    .menu-toggle {
        grid-column: 3;
        justify-self: end;
    }
}

.header.scrolled {
    padding: 0.8rem 2.5rem;
    box-shadow: var(--header-shadow-scrolled);
    border-bottom-color: rgba(90, 29, 53, 0.2);
}

.logo-frame {
    perspective: 600px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-frame img {
    height: 48px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-frame:hover img {
    transform: scale(1.1) rotateY(-8deg);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}


.logo-frame img {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgb(255, 255, 255));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: var(--transition);
    outline: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:focus-visible {
    outline: 2px dashed var(--secondary);
    outline-offset: 5px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0.8rem;
    border-radius: 5px;
    transition: var(--transition);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    height: 40px;
    width: 53px;
    outline: none;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* Content Sections */
.main {
    padding: 3rem 1rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.main h2 {
    font-size: clamp(2.5rem, 3vw + 0.75rem, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 1rem;
}

.main h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.main h2:hover::after {
    width: 90px;
}

.main p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #444;
}


#one, #two {
    display: flex;
    align-items: center;
    max-height: 700px;
}

#one .content, #two .content {
    background: white;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(90, 29, 53, 0.1);
    max-width: 900px;
    animation: fadeIn 1s ease-out;
    margin: 1rem auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(100% - 2rem);
    box-sizing: border-box;
}

#one .content:hover, #two .content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(90, 29, 53, 0.2);
}

/* Services Section */
#services {
    background: var(--light);
}

#services .content {
    max-width: 1600px;
    margin: 0 auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.gallery article {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    width: 100%;
    max-width: 100%;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(90, 29, 53, 0.1);
}

.gallery article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    transition: var(--transition);
}

.gallery article:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(90, 29, 53, 0.3);
}

.gallery article:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(90, 29, 53, 0.9), transparent);
    padding: 1rem;
    color: white;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease-out;
    z-index: 2;
}

.gallery article:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
#about {
    display: flex;
    align-items: center;
    height: auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #5a1d35;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(90, 29, 53, 0.3);
    outline: none;
}

.social-links a:hover {
    transform: translateY(-7px) scale(1.05);
    box-shadow: 0 10px 20px rgba(90, 29, 53, 0.5);
}

.social-links a:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.map-container {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(90, 29, 53, 0.1);
    transition: box-shadow 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;

}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Contact Page Styles */
body.contact-page {
    background: linear-gradient(135deg, #1a0f15 0%, #2d1b24 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

.contact-page .container {

    width: 100%;
    background: linear-gradient(135deg, #7a4657 0%, #5a3240 100%);
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    backdrop-filter: blur(8px);

    margin: 0 auto;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 207, 198, 0.15), transparent 70%);
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite 2s;
}

.map-section {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-bottom: 0px solid rgba(255, 255, 255, 0.1);
}



.map-overlay h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease forwards;
}

.map-overlay p {
    font-size: 18px;
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease forwards 0.3s;
    opacity: 0;
}

.content-section {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    position: relative;
    z-index: 2;
    background-color: rgba(90, 29, 53, 0.9);
    color: #f9f6f5;
}

.content-section a {
    color: white;
}

.about-box, .contact-box {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    outline: none;
    width: calc(100% - 30px);
    box-sizing: border-box;
}

.about-box:hover, .contact-box:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.about-box:focus-visible, .contact-box:focus-visible {
    outline: 3px solid rgba(229, 207, 198, 0.8);
    outline-offset: 5px;
}

.about-box {
    animation: fadeInLeft 1s ease forwards;
    animation-delay: 0.5s;
}

.contact-box {
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.7s;
}

.contact-page h2 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
}

.contact-page h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e5cfc6, #d4a89b);
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.contact-page h2:hover::after {
    width: 90px;
}

.contact-page p {
    line-height: 1.8;
    color: #f1e4df;
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 16px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info p i {
    margin-right: 15px;
    color: #e5cfc6;
    font-size: 20px;
    min-width: 24px;
    text-align: center;
    margin-top: 3px;
}

.social-icons {
    display: flex;
    margin-top: 25px;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #f1e4df;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1;
    outline: none;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 207, 198, 0.3), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.social-icons a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.social-icons a:hover::before {
    transform: translateY(0);
}

.social-icons a:hover i {
    transform: scale(1.2) rotate(5deg);
}

.social-icons a:focus-visible {
    outline: 3px solid rgba(229, 207, 198, 0.8);
    outline-offset: 5px;
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes backgroundPan {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* ================================================== */
/* Hero Slideshow Section                             */
/* ================================================== */
.hero-slideshow {
    position: relative;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: -webkit-fill-available;
    width: 100%;
    max-width: 100vw;
    touch-action: pan-y;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-drag: none;
    user-select: none;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.5s;
    width: 100%;
    box-sizing: border-box;
    touch-action: manipulation;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h2 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #f3e7e9, #d8bfd8, #b19cd9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Raleway', sans-serif;
    color: #f8f8f8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.slide-content .button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(90, 29, 53, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.slide-content .button:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 25px rgba(90, 29, 53, 0.4);
    background: linear-gradient(135deg, #9e5a81, #6d2646);
}

.slide-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.nav-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.nav-dot:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.floral-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 5;
    opacity: 0.1;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,15 C60,5 75,10 85,20 C95,30 90,45 80,55 C70,65 55,60 45,50 C35,40 40,25 50,15 Z" fill="none" stroke="white" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.floral-1 {
    top: 50px;
    left: 50px;
    animation: float 8s ease-in-out infinite;
}

.floral-2 {
    bottom: 50px;
    right: 50px;
    transform: rotate(180deg);
    animation: float 10s ease-in-out infinite 2s;
}

/* -------------------------------------------------- */
/* Responsive styles                                  */
/* -------------------------------------------------- */

@media (min-width: 768px) {
    .hero-content {
        width: 85%;
        padding: 2.5rem;
    }

    .hero-content h2 {
        font-size: clamp(2.8rem, 5vw + 1rem, 4.5rem);
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem);
        margin-bottom: 2rem;
    }

    .main {
        padding: 5rem 2rem;
    }

    .main h2 {
        font-size: clamp(2rem, 3vw + 0.75rem, 2.5rem);
    }

    .main p {
        font-size: 1.1rem;
    }

    #one .content, #two .content {
        padding: 3rem;
        margin: 2rem auto;
    }

    .gallery {
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 2rem;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-content p {
        font-size: 1.1rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .map-container {
        height: 400px;
    }

    .button {
        padding: 1rem 2.2rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .header {
        padding: 1rem 2.5rem;
    }

    .menu-toggle {
        display: none;
    }

    nav ul {
        position: static;
        flex-direction: row;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        transform: none;
        width: auto;
        padding: 0;
    }

    .nav-link {
        padding: 0.5rem 0;
        border-bottom: none;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        border-radius: 15px 0 0 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        z-index: 999;
        overflow-y: auto;
    }

    nav ul.show {
        right: 0;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        display: block;
        border-bottom: 1px solid rgba(90, 29, 53, 0.1);
    }

    .content-section {
        flex-direction: column;
    }

    .about-box, .contact-box {
        margin: 15px 0;
    }

    .map-section {
        height: 300px;
    }

    .floral-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .main {
        padding: 2rem 1rem;
    }

    .main h2 {
        font-size: clamp(1.8rem, 3vw + 0.75rem, 2rem);
    }

    #one, #two {
        min-height: 70vh;
    }

    #one .content, #two .content {
        padding: 1.5rem;
        margin: 0.5rem auto;
    }

    .content-section {
        padding: 25px;
    }

    .about-box, .contact-box {
        padding: 25px;
    }

    .contact-page h2 {
        font-size: 24px;
    }

    .map-section {
        height: 250px;
    }

    .map-overlay h2 {
        font-size: 24px;
    }

    .map-overlay p {
        font-size: 16px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .floral-decoration {
        width: 120px;
        height: 120px;
    }

    .floral-1 {
        top: 20px;
        left: 20px;
    }

    .floral-2 {
        bottom: 20px;
        right: 20px;
    }

    .slide-content h2 {
        font-size: clamp(2.2rem, 5vw, 3rem);
    }

    .slide-content p {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
    }

    .slide-content .button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.8rem 1rem;
    }

    .logo-frame img {
        height: 40px;
    }

    .main {
        padding: 1.5rem 0.8rem;
    }

    .main h2 {
        font-size: clamp(1.5rem, 3vw + 0.75rem, 1.8rem);
        padding-bottom: 0.5rem;
    }

    .main h2::after {
        height: 2px;
    }

    #one .content, #two .content {
        width: calc(100% - 1rem);
        padding: 1.2rem;
        margin: 0.5rem auto;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .about-container {
        padding: 0.8rem;
        gap: 1.5rem;
    }

    .contact-page .container {
        border-radius: 0;
        margin: 0;
    }

    .content-section {
        padding: 20px 15px;
    }

    .about-box, .contact-box {
        padding: 20px;
        margin: 10px 0;
        width: 100%;
    }

    .contact-info p {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .slide-content h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .slide-content p {
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        margin-bottom: 1.5rem;
    }

    .slide-content .button {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 10px;
    }

    .floral-decoration {
        width: 120px;
        height: 120px;
    }

    .floral-1 {
        top: 20px;
        left: 20px;
    }

    .floral-2 {
        bottom: 20px;
        right: 20px;
    }
}

/* -------------------------------------------------- */
/* iPhone landscape specific adjustments (Fix)        */
/* -------------------------------------------------- */

@media only screen and (max-device-width: 932px) and (orientation: landscape) {
    .hero-slideshow {
        /* Ensure the height is correct for landscape view */
        height: calc(var(--vh, 1vh) * 100);
        min-height: -webkit-fill-available;
    }

    .slide-content {
        /* Adjust padding for better spacing in landscape */
        padding: 0 1rem;
    }

    .slide-content h2 {
        /* Scale font size down for landscape to prevent overflow */
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .slide-content p {
        /* Adjust font size and margin */
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        margin-bottom: 1rem;
    }

    .slide-content .button {
        /* Adjust button size for landscape */
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 10px;
    }

    .header {
        /* Reduce header padding to fit more content */
        padding: 0.5rem 1rem;
    }

    .logo-frame img {
        /* Reduce logo size */
        height: 35px;
    }

    .menu-toggle {
        /* Reduce padding for menu toggle */
        padding: 0.5rem;
    }
    
    .slide-nav {
        /* Adjust nav dots position */
        bottom: 15px;
    }
}

/* -------------------------------------------------- */
/* Accessibility: Reduced Motion                      */
/* -------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms!important;
        animation-iteration-count: 1!important;
        transition-duration: 0.01ms!important;
        scroll-behavior: auto!important;
    }
    .down.anchored {
        animation: none;
    }
    .gallery article:hover img {
        filter: none;
    }
    .social-icons a:hover i {
        transform: none;
    }
}