/* Reset and Base Styles */
:root {
    --bg-color: #FCF8F8;
    --text-primary: #2D2B2B;
    --text-secondary: #5C5A5A;
    --primary-color: #CE808F;
    --primary-hover: #b86e7c;
    --white: #FFFFFF;
    --border-color: #F0E7E7;
    --footer-bg: #F7EBEB;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.75rem;
}

.eyebrow.white-eyebrow {
    color: var(--white);
    opacity: 0.9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.heart-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-left: 5px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(206, 128, 143, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid transparent;
}

.btn-secondary:hover {
    color: var(--primary-color);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.link-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.link-btn:hover i {
    transform: translateX(4px);
}

.link-text {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-text:hover {
    color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--bg-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background-color: rgba(252, 248, 248, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-html {
    display: inline-flex;
    flex-direction: column;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-html:hover {
    color: var(--text-primary);
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1;
    position: relative;
    letter-spacing: -0.5px;
}

.logo-main .sparkle {
    font-size: 0.75rem;
    color: var(--primary-color);
    position: absolute;
    top: -2px;
    right: -12px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 2.2px;
    margin-top: 4px;
    color: var(--text-secondary);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.nav-list a:hover, .nav-list a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Modern Hero Section */
.hero-modern {
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-background-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(206, 128, 143, 0.15) 0%, rgba(252, 248, 248, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 8s infinite alternate;
}

.hero-container-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content-modern {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 8px 16px 8px 8px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.hero-badge .avatars {
    display: flex;
}

.hero-badge .avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-right: -12px;
    object-fit: cover;
}

.hero-badge .avatars img:last-child {
    margin-right: 0;
}

.hero-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.hero-badge .stars {
    color: #F59E0B;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.hero-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-title-modern {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title-modern .sparkle-icon {
    color: var(--primary-color);
    font-size: 3rem;
    vertical-align: super;
}

.hero-subtitle-modern {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons-modern {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 50px;
}

.hero-visual-modern {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-arch {
    width: 85%;
    max-width: 500px;
    height: 650px;
    border-radius: 250px 250px 20px 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-image-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-arch:hover img {
    transform: scale(1.05);
}

.hero-decorative-circle {
    position: absolute;
    bottom: 50px;
    left: -30px;
    width: 180px;
    height: 180px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    animation: rotate 20s linear infinite;
    opacity: 0.5;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Services */
.services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Booking Banner */
.booking-banner-section {
    padding: 2rem 0;
}

.booking-banner {
    background: linear-gradient(135deg, #FADEE0 0%, #f6d1d4 100%);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(206, 128, 143, 0.15);
}

.banner-icon {
    background: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
    padding: 0 3rem;
}

.banner-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    color: var(--text-primary);
    opacity: 0.8;
}

/* Gallery */
.gallery {
    padding: 6rem 0;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    padding: 5rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 1.5rem 0;
    max-width: 250px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(206, 128, 143, 0.4);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-5px);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer ul li, .footer ul a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-contact ul li {
    justify-content: flex-start;
    gap: 10px;
}

.footer-contact ul li i {
    color: var(--primary-color);
}

.footer ul a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.about-content {
    flex: 1;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--white);
}

.contact-container {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.contact-item h4 {
    margin-bottom: 0.2rem;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 12px;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(206, 128, 143, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title-modern {
        font-size: 4rem;
    }
    .hero-image-arch {
        height: 500px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .about-container, .contact-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav.active .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .header .btn-icon {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content-modern {
        max-width: 100%;
    }
    
    .hero-badge { margin: 0 auto 2rem; }
    .hero-subtitle-modern { margin-left: auto; margin-right: auto; }
    .hero-buttons-modern { justify-content: center; }
    .hero-visual-modern { justify-content: center; width: 100%; margin-top: 3rem; }
    .hero-image-arch { width: 100%; max-width: 400px; }

    .booking-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 2rem;
    }
    
    .banner-text {
        padding: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Section Stacking */
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .contact-container {
        flex-direction: column;
    }
    .contact-form-wrapper {
        padding: 2rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .footer-brand p {
        margin: 1.5rem auto;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-contact ul li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero-title-modern {
        font-size: 3.2rem;
    }
    .hero-buttons-modern {
        flex-direction: column;
        gap: 1rem;
    }
    .btn-lg {
        width: 100%;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* Animations & Modern Effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-item.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse animation */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(206, 128, 143, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(206, 128, 143, 0); }
    100% { box-shadow: 0 0 0 0 rgba(206, 128, 143, 0); }
}

.pulse-animation {
    animation: pulseGlow 2s infinite;
}

/* Hover effects */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
}
.btn-hover-effect::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.btn-hover-effect:hover::after {
    width: 100%;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.show .lightbox-content {
    transform: scale(1);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px){
  .lightbox-content {
    width: 100%;
  }
}
