@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;600&family=Dancing+Script:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #c9c9c9 0%, #d4d4d4 100%);
}

/* Navigation Styles */
.top-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(61, 61, 61, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-navigation.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c9c9c9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #c9c9c9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: white;
}

.nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Add padding to body to account for fixed nav */
body {
    padding-top: 70px;
}

.flyer-container {
    max-width: 1200px;
    margin: 2rem auto;
    background: linear-gradient(135deg, #c9c9c9 0%, #d4d4d4 100%);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.hero-main-content {
    flex: 0 0 auto;
    max-width: 500px !important;
}

.header-logo {
    position: absolute;
    top: 3rem;
    right: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.2s forwards;
}

.header-logo img {
    width: 120px;
    height: auto;
}

.main-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.name-title {
    font-family: 'Dancing Script', cursive;
    font-style: normal;
    font-size: 7.5rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.title-container {
    margin-bottom: 2rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.intro-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    margin-right: 16px;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.service-box {
    background: #3d3d3d;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.service-box:nth-child(1) {
    animation-delay: 0.9s;
}

.service-box:nth-child(2) {
    animation-delay: 1.1s;
}

.service-box:nth-child(3) {
    animation-delay: 1.3s;
}

.service-box:nth-child(4) {
    animation-delay: 1.5s;
}

.service-box-alt {
    background: #4a4a4a;
}

.photos-container {
    position: relative;
    right: 0;
    top: 0;
    width: 500px;
    height: 550px;
    flex-shrink: 0;
}

.photos-container .photo-frame {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.photo-frame {
    background: white;
    padding: 0.75rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: absolute;
}

.photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-frame-1 {
    transform: rotate(-5deg) !important;
    z-index: 2 !important;
    animation-delay: 0.5s;
    width: 320px !important;
    top: 0 !important;
    left: 0 !important;
}

.photo-frame-2 {
    transform: rotate(8deg) !important;
    z-index: 3 !important;
    animation-delay: 0.7s;
    width: 280px !important;
    bottom: 20px !important;
    right: 0 !important;
}

.book-now-section {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.7s forwards;
}

.book-button {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 2rem;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
    width: auto;
    max-width: 100%;
    letter-spacing: 1px;
}

.book-button:hover {
    background: linear-gradient(135deg, #6B3410 0%, #5A2A0D 100%);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    transform: scale(1.05);
}

.book-button:active {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Animated Book Buttons */
.book-button-animated {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 2rem;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
    width: auto;
    max-width: 100%;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s ease-in-out infinite;
}

.book-button-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.book-button-animated:hover::before {
    width: 300px;
    height: 300px;
}

.book-button-animated:hover {
    background: linear-gradient(135deg, #6B3410 0%, #5A2A0D 100%);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.5);
    transform: scale(1.08) translateY(-3px);
    animation: none;
}

.book-button-animated:active {
    transform: scale(1.02) translateY(0);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(139, 69, 19, 0.6);
        transform: scale(1.02);
    }
}

.hero-book-button {
    margin: 2rem 0;
}

.contact-section {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.9s forwards;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-icon {
    width: 20px;
    margin-right: 0.5rem;
}

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

.contact-link:hover {
    opacity: 0.8;
    cursor: pointer;
}

.decorative-leaves {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 200px;
    opacity: 0;
    animation: fadeToLight 2s ease-out 2s forwards;
}

@keyframes fadeToLight {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.15;
    }
}

/* Content Sections */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-inner {
    width: 100%;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #3d3d3d;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #c9c9c9 0%, #d4d4d4 100%);
    border-radius: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #3d3d3d;
    margin-top: 0;
}

.feature-item p {
    color: #4a4a4a;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3d3d3d;
    margin-top: 0;
}

.service-description {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: #4a4a4a;
    border-bottom: 1px solid #e8e8e8;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: "✓ ";
    color: #3d3d3d;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #3d3d3d 0%, #4a4a4a 100%);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    text-align: right;
}

/* Contact Section */
.contact-full-section {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-box {
    background: linear-gradient(135deg, #c9c9c9 0%, #d4d4d4 100%);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3d3d3d;
}

.info-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.info-link:hover {
    opacity: 0.8;
}

.info-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

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

.hours-list p {
    margin: 0.5rem 0;
    color: #4a4a4a;
}

.book-now-centered {
    text-align: center;
    margin-top: 3rem;
}

.book-button-large {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 2rem;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
    letter-spacing: 1px;
}

.book-button-large:hover {
    background: linear-gradient(135deg, #6B3410 0%, #5A2A0D 100%);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    transform: scale(1.05);
}

.section-book-button {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: #3d3d3d;
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer p {
    margin: 0;
    margin-bottom: 0.5rem;
}

.footer p:last-child {
    margin-bottom: 0;
}

.footer-credit {
    font-size: 0.9rem;
    opacity: 0.8;
}

.beautyos-link {
    color: #c9c9c9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.beautyos-link:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .flyer-container {
        flex-direction: column;
        gap: 0;
    }

    .hero-main-content {
        max-width: 100% !important;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(61, 61, 61, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nav-logo {
        font-size: 1.5rem;
    }

    .flyer-container {
        padding: 2rem 1.5rem;
    }

    .name-title {
        font-size: 3rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .photos-container {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        margin-top: 2rem;
        margin-bottom: 8rem;
    }

    .photo-frame {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-services-container {
        max-width: 100% !important;
    }

    .service-box {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .service-list li {
        padding: 0.35rem 0;
        font-size: 0.9rem;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }
}
