@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&display=swap');

/* Root Variables - Warm Wellness Palette */
:root {
    --primary-gold: #C8A876;
    --cream: #F5F1E8;
    --dark-brown: #4A3728;
    --light-beige: #EAE4D9;
    --accent-green: #8B9B7F;
    --text-dark: #3D3D3D;
    --text-light: #FFFFFF;
    --gradient-blue-light: #63A1FC;
    --gradient-blue-dark: #2563EB;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    color: #974E51;
    background-color: #E9E3E1;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background-color: #191919;
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.6rem;
    color: #E9E3E1;
    font-weight: 600;
    letter-spacing: 1.8px;
    font-family: 'Playfair Display', serif;
    margin: 0;
    white-space: nowrap;
    line-height: 1.2;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.brand-link:hover {
    opacity: 0.85;
}

.logo-img {
    height: 2.8rem;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.brand-link:hover .logo-img {
    transform: scale(1.05);
}

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

.nav-links a {
    text-decoration: none;
    color: #E9E3E1;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #A43B58;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF97A4;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: #DF7275;
    color: #E9E3E1;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="20" fill="rgba(255,255,255,0.05)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
}

.hero-button {
    display: inline-block;
    background-color: #974E51;
    color: #E9E3E1;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
    letter-spacing: 0.5px;
}

.hero-button:hover {
    background-color: #6C707B;
    color: #E9E3E1;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #974E51;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Experience Section */
.experience {
    padding: 5rem 2rem;
    background-color: #E9E3E1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Service Card */
.service-card {
    background-color: #E9E3E1;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #DF7275;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #974E51;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #974E51;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-details {
    border-top: 1px solid #E0E0E0;
    padding-top: 1.5rem;
}

.duration {
    display: inline-block;
    background-color: #E9E3E1;
    color: #974E51;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.service-details .benefit {
    color: #974E51;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: #E9E3E1;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #DF7275;
    text-align: center;
}

.pricing-card h3 {
    font-size: 1.4rem;
    color: #974E51;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.pricing-card .price {
    font-size: 2rem;
    color: #DF7275;
    font-weight: 600;
    margin: 0.5rem 0 1.5rem 0;
}

.pricing-card .description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #974E51;
}

.pricing-note {
    background-color: #F5F1E8;
    padding: 1.5rem 2rem;
    border-left: 4px solid #974E51;
    margin-bottom: 3rem;
    border-radius: 4px;
}

.pricing-note p {
    color: #974E51;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Services List */
.services-list {
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 0.95rem;
    color: #974E51;
    line-height: 1.8;
    margin-bottom: 2rem;
    display: block;
    text-align: center;
    font-style: italic;
}

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

.technique-item {
    background-color: #E9E3E1;
    padding: 1.8rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #974E51;
}

.technique-item h4 {
    font-size: 1.1rem;
    color: #974E51;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.technique-item p {
    font-size: 0.85rem;
    color: #974E51;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: #E9E3E1;
    color: #974E51;
    padding: 3rem 2rem;
}

.cta-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #974E51;
    font-weight: 400;
    letter-spacing: 1px;
}

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

.cta-item {
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cta-item h3 {
    color: #974E51;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.4;
    height: 3.2rem;
}

.cta-item p {
    line-height: 1.6;
    font-size: 0.85rem;
    color: #974E51;
    flex: 1;
}

.cta-button {
    display: inline-block;
    background-color: #974E51;
    color: #E9E3E1;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    width: fit-content;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #6C707B;
    color: #E9E3E1;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #191919;
    color: #E9E3E1;
    padding: 3rem 2rem 2rem;
    border-top: 1px solid #191919;
}

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

.footer-section h4 {
    color: #E9E3E1;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-section p {
    line-height: 1.8;
    font-size: 0.95rem;
    color: #E9E3E1;
    opacity: 1;
}

.footer-section a {
    color: #FF97A4;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    opacity: 0.7;
}

/* Page Header */
.page-header {
    background-color: #DF7275;
    color: #E9E3E1;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(0,0,0,0.03)"/><circle cx="80" cy="80" r="20" fill="rgba(0,0,0,0.03)"/></svg>');
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    color: #E9E3E1;
}

.page-header p {
    font-size: 1.3rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    color: #E9E3E1;
}

/* Services CTA */
.services-cta {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #E9E3E1;
    margin-top: 3rem;
    border-radius: 8px;
}

.services-cta h2 {
    font-size: 2rem;
    color: #974E51;
    margin-bottom: 1rem;
    font-weight: 400;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #974E51;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.about-section {
    background-color: #E9E3E1;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #DF7275;
}

.about-section h3 {
    font-size: 1.6rem;
    color: #974E51;
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-section p {
    line-height: 1.8;
    color: #974E51;
}

/* Values Section */
.values-section {
    background-color: #E9E3E1;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #974E51;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

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

.value-card {
    background-color: #E9E3E1;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid #DF7275;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h4 {
    font-size: 1.3rem;
    color: #974E51;
    margin-bottom: 1rem;
    font-weight: 400;
}

.value-card p {
    color: #974E51;
    line-height: 1.8;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: #E9E3E1;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #DF7275;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #974E51;
    margin-bottom: 1rem;
    font-weight: 400;
}

.info-card p {
    line-height: 1.8;
    color: #974E51;
    margin-bottom: 0.5rem;
}

.contact-form-section {
    background-color: #E9E3E1;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
    font-size: 1.6rem;
    color: #974E51;
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #974E51;
}

.required {
    color: #DF7275;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #DF7275;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
    color: #974E51;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #974E51;
    box-shadow: 0 0 5px rgba(151, 78, 81, 0.2);
}

.submit-button {
    background-color: #974E51;
    color: #E9E3E1;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    background-color: #6C707B;
    color: #E9E3E1;
    transform: scale(1.02);
}

/* Hidden Class */
.hidden {
    display: none;
}

/* Notification Banner */
.notification-banner {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.notification-banner.show {
    display: block;
}

.notification-banner.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification-banner.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification-banner.close-button {
    float: right;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    opacity: 0.7;
    background: none;
    border: none;
    padding: 0;
    margin-left: 1rem;
}

.notification-banner.close-button:hover {
    opacity: 1;
}

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

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

.notification-banner.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

.map-section h2 {
    font-size: 1.8rem;
    color: #974E51;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Appointment Section */
.appointment-section {
    text-align: center;
    padding: 4rem 2rem;
    background: #DF7275;
    color: #E9E3E1;
    border-radius: 8px;
    margin-top: 4rem;
}

.appointment-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.appointment-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.appointment-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.appointment-buttons .cta-button {
    background-color: #974E51;
    color: #E9E3E1;
}

.appointment-buttons .cta-button:hover {
    background-color: #6C707B;
    color: #E9E3E1;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #8E6778;
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #E9E3E1;
}

.footer-bottom p:first-child {
    color: #E9E3E1;
    font-weight: 500;
}

/* Founder Section */
.founder-section {
    background-color: #E9E3E1;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.founder-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #974E51;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

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

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

.profile-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.founder-text p {
    line-height: 1.8;
    color: #974E51;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 2.2rem;
    }

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

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

    .navbar .container {
        flex-direction: row;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

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

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

    .appointment-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
        min-height: 50vh;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .navbar .container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-links a {
        font-size: 0.85rem;
        flex: 0 1 auto;
    }

    .experience {
        padding: 2rem 1rem;
    }

    .page-header {
        padding: 2.5rem 1rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-form-section,
    .info-card {
        padding: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 1rem;
    }

    .appointment-section {
        padding: 2.5rem 1rem;
    }
}

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

.service-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
