@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500&family=Dancing+Script:wght@400;700&family=Great+Vibes&display=swap');

:root {
    --mona-dark: #483C32;      /* Dark earthy brown */
    --mona-medium: #7E6C54;    /* Medium olive brown */
    --mona-light: #C2B280;     /* Light sand/beige */
    --mona-accent: #8B5A2B;    /* Warm amber/sienna */
    --mona-highlight: #D4AF37; /* Gold highlight */
    --mona-bg: #F5F1E6;        /* Soft cream background */
    --pink-dark: #993366;      /* Dark pink */
    --pink-medium: #CC6699;    /* Medium pink */
    --pink-light: #FFCCCC;     /* Light pink */
    --pink-pale: #FFEBEB;      /* Very light pink */
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--mona-bg);
    color: var(--mona-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navigation Styles */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(245, 241, 230, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 40;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 3em;
    color: var(--pink-dark);
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.logo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(to right, transparent, var(--pink-medium), transparent);
}

.strapline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2em;
    color: var(--pink-medium);
    font-style: italic;
    letter-spacing: 1px;
    margin-top: 2px;
    text-align: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--mona-dark);
    font-weight: 500;
    font-size: 1em;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--pink-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--pink-dark);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--pink-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

header {
    position: relative;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 204, 204, 0.5); /* More transparent pink background */
    z-index: 1;
    padding-top: 80px;
}

.header-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-bottom: 30px;
    background-color: rgba(245, 241, 230, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 50;
    margin-top: 60px;
}

.carousel {
    position: relative;
    height: 500px;
    width: 100%;
}

.carousel {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05) translateX(20px);
    transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1), 
                transform 1.5s cubic-bezier(0.33, 1, 0.68, 1),
                filter 1.5s cubic-bezier(0.33, 1, 0.68, 1);
    overflow: hidden;
    filter: brightness(0.9) blur(1px);
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    filter: brightness(1) blur(0);
    z-index: 2;
}

.carousel-slide.prev-active {
    opacity: 0;
    transform: scale(0.95) translateX(-20px);
    z-index: 1;
    filter: brightness(0.85) blur(2px);
    transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1), 
                transform 1.5s cubic-bezier(0.33, 1, 0.68, 1),
                filter 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease-out;
}

.carousel-slide.active img {
    animation: enhanced-zoom 5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes enhanced-zoom {
    0% { transform: scale(1); }
    10% { transform: scale(1.02); } /* Slight initial zoom for smoother start */
    100% { transform: scale(1.15); }
}

.slide-caption {
    position: absolute;
    top: 61.8%; /* Golden mean ratio positioning */
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 15px 60px;
    font-family: 'Great Vibes', cursive;
    font-size: 2.2em;
    text-align: center;
    transform: translateY(-50%); /* Center the text box itself */
    max-width: 80%;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 55; /* Ensure it's above other carousel elements */
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1), 
                transform 1.5s cubic-bezier(0.33, 1, 0.68, 1);
    transform: translateY(-50%) translateX(15px);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(2px);
    letter-spacing: 2px;
    will-change: opacity, transform;
}

.carousel-slide.active .slide-caption {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.carousel-controls {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.carousel-prev, .carousel-next {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 1.2em;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

.scroll-down {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--pink-dark);
    font-size: 0.9em;
    font-weight: 500;
    transition: transform 0.3s ease;
    z-index: 10;
}

.scroll-down span {
    margin-bottom: 8px;
}

.scroll-down i {
    font-size: 1.2em;
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(-5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    margin: 0;
    color: var(--pink-dark);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: var(--pink-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--pink-medium);
    bottom: -10px;
    left: 25%;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    color: var(--mona-dark);
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.2em;
    font-weight: 500;
}

#showcase {
    position: relative;
}

#showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(204, 102, 153, 0.05) 25%, transparent 25%, transparent 50%, rgba(204, 102, 153, 0.05) 50%, rgba(204, 102, 153, 0.05) 75%, transparent 75%);
    background-size: 30px 30px;
    opacity: 0.6;
    z-index: 0;
}

#showcase h2, #showcase .section-intro {
    position: relative;
    z-index: 1;
}

#showcase .section-intro {
    font-style: italic;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
    font-size: 1.3em;
    max-width: 700px;
    line-height: 1.7;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(204, 102, 153, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 4px solid white;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 5%;
    right: 5%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(204, 102, 153, 0.4) 0%, rgba(204, 102, 153, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(3px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.7s ease;
    transform-origin: center;
}

.gallery-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 15px 25px rgba(204, 102, 153, 0.2);
    border-color: rgba(204, 102, 153, 0.5);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 25px 20px 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .item-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-image: url('https://images.unsplash.com/photo-1518621736915-f3b1c41bfd00?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    border-radius: 50%;
    z-index: 2;
    filter: hue-rotate(340deg) saturate(1.3);
    transform: scale(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover::after {
    transform: scale(1);
    opacity: 0.3;
}

section {
    margin-bottom: 40px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(204, 102, 153, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(204, 102, 153, 0.2);
}

section::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 2%;
    right: 2%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(204, 102, 153, 0.5) 0%, rgba(204, 102, 153, 0) 80%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(2px);
    box-shadow: 0 0 15px rgba(204, 102, 153, 0.4);
}

/* Rose Decorations */
.rose-decoration {
    position: absolute;
    width: 250px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
    filter: hue-rotate(340deg) saturate(1.2);
}

.rose-decoration.left {
    top: 20px;
    left: 20px;
    background-image: url('https://images.unsplash.com/photo-1596944924616-7b38e7cfbfc8?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80');
    transform: rotate(-15deg);
}

.rose-decoration.right {
    top: 20px;
    right: 20px;
    background-image: url('https://images.unsplash.com/photo-1518621736915-f3b1c41bfd00?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80');
    transform: rotate(15deg);
}

/* Add rose background to the entire page */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1494972308805-463bc619d34e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: -1;
    filter: hue-rotate(340deg) saturate(1.3);
}

.footer-decoration {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 150px;
    background-image: url('https://images.unsplash.com/photo-1494972308805-463bc619d34e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    filter: hue-rotate(340deg) saturate(1.3);
}

#about {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('https://images.unsplash.com/photo-1596944924616-7b38e7cfbfc8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    filter: hue-rotate(340deg) saturate(1.2);
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 102, 153, 0.1) 25%, transparent 25%, transparent 50%, rgba(204, 102, 153, 0.1) 50%, rgba(204, 102, 153, 0.1) 75%, transparent 75%);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

#about .about-content,
#bespoke-events .bespoke-events-content {
    position: relative;
    z-index: 1;
}

/* Bespoke Events Section Styles */
#bespoke-events {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('https://images.unsplash.com/photo-1522673607200-164d1b6ce486?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    filter: hue-rotate(340deg) saturate(1.2);
    position: relative;
}

#bespoke-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 102, 153, 0.1) 25%, transparent 25%, transparent 50%, rgba(204, 102, 153, 0.1) 50%, rgba(204, 102, 153, 0.1) 75%, transparent 75%);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

.bespoke-events-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.bespoke-events-image {
    flex: 1;
    min-width: 300px;
}

.bespoke-events-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid white;
}

.bespoke-events-image img:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.bespoke-events-text {
    flex: 2;
    min-width: 300px;
}

.bespoke-events-text p {
    font-size: 1.1em;
    line-height: 1.9;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.bespoke-events-text p:first-of-type::first-letter {
    font-size: 2.5em;
    font-family: 'Playfair Display', serif;
    color: var(--pink-dark);
    float: left;
    line-height: 0.8;
    margin-right: 8px;
    margin-top: 4px;
}

#about .about-image img {
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about .about-image img:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

#about .about-text p {
    font-size: 1.1em;
    line-height: 1.9;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}

#about .about-text p:first-of-type::first-letter {
    font-size: 2.5em;
    font-family: 'Playfair Display', serif;
    color: var(--pink-dark);
    float: left;
    line-height: 0.8;
    margin-right: 8px;
    margin-top: 4px;
}

#contact {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1548811579-017cf2a4268b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    filter: sepia(20%) hue-rotate(340deg) saturate(0.9);
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 102, 153, 0.05) 25%, transparent 25%, transparent 50%, rgba(204, 102, 153, 0.05) 50%, rgba(204, 102, 153, 0.05) 75%, transparent 75%);
    background-size: 30px 30px;
    opacity: 0.6;
    z-index: 0;
}

#contact h2 {
    position: relative;
    z-index: 1;
    font-size: 2.2em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#contact .section-intro {
    position: relative;
    z-index: 1;
    font-style: italic;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
    font-size: 1.3em;
    max-width: 700px;
    line-height: 1.7;
}

#contact form {
    border: 4px solid white;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(204, 102, 153, 0.15);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 15px;
}

#contact form::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 5%;
    right: 5%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(204, 102, 153, 0.4) 0%, rgba(204, 102, 153, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(3px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

#contact form:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 15px 25px rgba(204, 102, 153, 0.2);
    border-color: rgba(204, 102, 153, 0.5);
}

#contact form:hover::before {
    opacity: 1;
}

#contact form::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background-image: url('https://images.unsplash.com/photo-1518621736915-f3b1c41bfd00?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 2;
    filter: hue-rotate(340deg) saturate(1.3);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#contact form:hover::after {
    transform: scale(1);
    opacity: 0.3;
}

#contact button {
    background: linear-gradient(to right, var(--pink-dark), var(--pink-medium));
    transition: all 0.4s ease, transform 0.4s ease;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(153, 51, 102, 0.3);
    position: relative;
    overflow: hidden;
}

#contact button:hover {
    background: linear-gradient(to right, var(--pink-medium), var(--pink-dark));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(153, 51, 102, 0.4);
}

#contact input, #contact textarea {
    border: 2px solid rgba(204, 102, 153, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

#contact input:focus, #contact textarea:focus {
    border-color: var(--pink-medium);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

#contact label {
    color: var(--pink-dark);
    font-size: 1.2em;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Add rose border to sections */
section::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background-image: url('https://images.unsplash.com/photo-1518621736915-f3b1c41bfd00?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
    opacity: 0.25;
    filter: hue-rotate(340deg) saturate(1.3);
}

/* Gold accents for visual pop */
h2::before, h2::after {
    content: '❦';
    font-size: 0.6em;
    color: var(--pink-dark);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

h2::before {
    left: -30px;
}

h2::after {
    content: '❦';
    width: auto;
    height: auto;
    background: none;
    right: -30px;
    left: auto;
    bottom: auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

#process {
    position: relative;
}

#process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-radial-gradient(circle at 50% 50%, rgba(204, 102, 153, 0.05) 0%, rgba(204, 102, 153, 0.05) 10px, transparent 10px, transparent 20px);
    opacity: 0.7;
    z-index: 0;
}

#process h2, #process .section-intro {
    position: relative;
    z-index: 1;
}

#process .section-intro {
    font-style: italic;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 25px;
    background-color: rgba(255, 241, 241, 0.8);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 3px 10px rgba(204, 102, 153, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(204, 102, 153, 0.3);
    overflow: hidden;
}

.step {
    background-image: url('https://images.unsplash.com/photo-1596944924616-7b38e7cfbfc8?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 241, 241, 0.8);
    background-blend-mode: overlay;
}

.step::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 5%;
    right: 5%;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(204, 102, 153, 0.3) 0%, rgba(204, 102, 153, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(2px);
    box-shadow: 0 0 10px rgba(204, 102, 153, 0.3);
}

/* Step images */
.step-image {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    height: 180px;
    border: 3px solid white;
    transition: all 0.3s ease;
}

.step-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.step:hover .step-image {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.step:hover .step-image img {
    transform: scale(1.05);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(204, 102, 153, 0.15);
    border-color: var(--pink-medium);
}

.step i {
    font-size: 2.2em;
    color: var(--pink-dark);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
    color: var(--mona-dark);
    font-size: 1.3em;
    position: relative;
    z-index: 1;
}

.step p {
    position: relative;
    z-index: 1;
    font-size: 1.05em;
}

/* Step numbers - hidden as requested */
.step::after {
    display: none; /* Hide the step numbers */
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 30px auto;
    position: relative;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(204, 102, 153, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

form::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 2%;
    right: 2%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(204, 102, 153, 0.5) 0%, rgba(204, 102, 153, 0) 80%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(2px);
    box-shadow: 0 0 15px rgba(204, 102, 153, 0.4);
}

label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--mona-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
}

input, textarea {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid rgba(204, 102, 153, 0.2);
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1em;
    background-color: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--pink-medium);
    box-shadow: 0 0 0 3px rgba(204, 102, 153, 0.2);
    transform: translateY(-2px);
    background-color: white;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    padding: 15px 30px;
    background-color: var(--pink-dark);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: center;
    position: relative;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(153, 51, 102, 0.2);
}

button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.6s ease;
}

button:hover {
    background-color: var(--pink-medium);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(153, 51, 102, 0.3);
}

button:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

@media (max-width: 768px) {
    form {
        padding: 20px;
        margin: 20px auto;
    }
    
    input, textarea, button {
        font-size: 1em;
        padding: 12px;
    }
}

footer {
    background-color: var(--pink-light);
    text-align: center;
    padding: 30px 20px 20px;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    color: var(--mona-dark);
    margin-top: 10px;
    overflow: hidden;
}

/* Header Styles */
.header-decoration {
    margin-top: 30px;
}

.rose-image {
    max-width: 150px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

header p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 20px auto 0;
    color: #666;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--pink-dark);
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--mona-highlight);
}


/* Gallery enhancements */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1596944924616-7b38e7cfbfc8?ixlib=rb-1.2.1&auto=format&fit=crop&w=100&q=80');
    background-size: 100px;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    filter: hue-rotate(340deg) saturate(1.3);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--pink-medium);
}

.gallery-item:hover::before {
    opacity: 0.25;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rose-decoration {
        width: 100px;
        height: 100px;
    }
    
    h2::before, h2::after {
        display: none;
    }
    h1 {
        font-size: 2.5em;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    section {
        padding: 25px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step {
        width: 100%;
        min-width: 100%;
        padding: 20px 15px;
        margin-bottom: 10px;
    }
    
    .step-image {
        height: auto;
        max-height: 180px;
    }
    
    .step-image img {
        height: auto;
        max-height: 180px;
    }
    
    .step h3 {
        font-size: 1.2em;
        margin-top: 10px;
    }
    
    .step p {
        font-size: 1em;
        line-height: 1.5;
    }
    
    .step i {
        font-size: 1.8em;
        margin-bottom: 10px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    /* Carousel adjustments for mobile */
    .carousel {
        height: 400px; /* Slightly shorter on mobile */
    }
    
    .slide-caption {
        padding: 12px 20px;
        font-size: 1.8em;
        max-width: 90%;
        top: 61.8%; /* Maintain golden ratio positioning */
        background: rgba(0,0,0,0.6); /* Darker background for better visibility on mobile */
    }
    
    /* Additional mobile adjustments for very small screens */
    @media (max-width: 480px) {
        .carousel {
            height: 350px;
        }
        
        .slide-caption {
            padding: 10px 15px;
            font-size: 1em;
            max-width: 95%;
        }
        
        .carousel-container {
            margin-top: 40px;
        }
        
        .process-steps {
            gap: 15px;
        }
        
        .step {
            padding: 15px 10px;
        }
        
        .step-image {
            max-height: 150px;
            margin-top: 15px;
        }
        
        .step-image img {
            max-height: 150px;
        }
        
        .step h3 {
            font-size: 1.1em;
        }
        
        .step p {
            font-size: 0.95em;
            line-height: 1.4;
        }
    }
    
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 300px;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 30px;
        border-bottom: 1px solid #f0f0f0;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 0.8s ease-out forwards;
}

section:nth-child(2) {
    animation-delay: 0.2s;
}

section:nth-child(3) {
    animation-delay: 0.4s;
}

section:nth-child(4) {
    animation-delay: 0.6s;
}
