/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

/* Top Bar */
.top-bar {
    background-color: #fafafa;
    padding: 15px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.top-bar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.top-bar-logo {
    width: 40px;
    height: auto;
}

.top-bar-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 3px;
    margin: 0;
}

.top-nav {
    display: flex;
    gap: 30px;
}

/* Adjust body to account for fixed top bar */
body {
    padding-top: 20px;
}

/* Landing Page */
.landing-container {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    padding-top: 0;
}

.landing-content {
    text-align: center;
    padding: 40px;
    margin-top: -10vh;
}

.brand-logo {
    width: 200px;
    height: auto;
    margin: 0 auto -2rem auto;
    display: block;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 0px;
    letter-spacing: 5px;
}

.brand-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 80px;
}

.minimal-nav {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.minimal-link {
    font-size: 1.1rem;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.minimal-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.minimal-link:hover {
    color: #666;
}

.minimal-link:hover:after {
    width: 100%;
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background-color: #fafafa;
}

.back-link {
    font-size: 0.95rem;
    color: #666;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #2c2c2c;
}

.top-nav {
    display: flex;
    gap: 30px;
}

.top-link {
    font-size: 0.95rem;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: #666;
}

/* Main Content */
.minimal-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.minimal-section {
    animation: fadeIn 0.6s ease;
}

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

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* About Page */
.content-block {
    margin-bottom: 60px;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-with-image {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.about-image-container {
    flex-shrink: 0;
    width: 280px;
}

.about-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-weight: 300;
}

.simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.simple-card {
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.simple-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.simple-card p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
}

/* Services Page */
.service-list {
    margin-bottom: 60px;
}

.service-item {
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.service-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
}

.service-price {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

.service-item p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
}

.service-content {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    align-items: flex-start;
}

.service-image-container {
    flex-shrink: 0;
    width: 200px;
}

.service-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 2px;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.service-details li {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c2c2c;
}

.cta-minimal {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    display: inline-block;
    padding: 15px 50px;
    background-color: #2c2c2c;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #4a4a4a;
}

/* Booking Page */
.minimal-form {
    max-width: 500px;
    margin: 0 auto 60px;
}

.minimal-form input,
.minimal-form select,
.minimal-form textarea {
    width: 100%;
    padding: 15px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #2c2c2c;
    transition: border-color 0.3s ease;
}

.minimal-form input:focus,
.minimal-form select:focus,
.minimal-form textarea:focus {
    outline: none;
    border-bottom-color: #2c2c2c;
}

.minimal-form textarea {
    resize: vertical;
    min-height: 100px;
}

.minimal-form select {
    cursor: pointer;
}

.minimal-form button {
    width: 100%;
    margin-top: 20px;
}

.contact-minimal {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.contact-minimal p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
    margin: 10px 0;
}

.calendly-inline-widget {
    border-radius: 16px;
    overflow: hidden;
}


/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        padding: 10px 20px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        position: relative;
    }
    
    .top-bar-brand {
        position: relative;
        left: 0;
        transform: none;
        order: 1;
    }
    
    .back-link {
        order: 0;
        align-self: flex-start;
    }
    
    .top-nav {
        order: 2;
        gap: 20px;
    }
    
    .top-bar-name {
        font-size: 1.1rem;
    }
    
    .top-bar-logo {
        width: 30px;
    }
    
    body {
        padding-top: 120px;
    }
    
    .brand-logo {
        width: 100px;
        margin-bottom: 1.5rem;
    }
    
    .brand-name {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
    
    .brand-subtitle {
        font-size: 0.85rem;
        margin-bottom: 50px;
    }
    
    .landing-container {
        height: auto;
        min-height: 80vh;
        padding: 20px;
    }

    .landing-content {
        margin-top: 0;
        padding: 20px;
    }
    
    .minimal-nav {
        flex-direction: column;
        gap: 20px;
    }

    .minimal-link {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 20px 30px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .minimal-main {
        padding: 30px 20px 80px;
    }
    
    .page-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }
    
    .simple-grid {
        grid-template-columns: 1fr;
    }
    
    .about-with-image {
        flex-direction: column;
        gap: 25px;
    }
    
    .about-image-container {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .about-text p {
        font-size: 0.95rem;
    }
    
    .service-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-image-container {
        width: 100%;
        max-width: 250px;
    }

    .service-list {
        margin-bottom: 40px;
    }

    .service-item {
        padding: 20px 0;
    }

    .service-details li {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 14px 40px;
        font-size: 0.9rem;
    }

    /* Form inputs - prevent iOS zoom */
    .minimal-form input,
    .minimal-form select,
    .minimal-form textarea {
        font-size: 16px;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 380px) {
    body {
        padding-top: 110px;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .service-item h3 {
        font-size: 1.1rem;
    }

    .minimal-main {
        padding: 25px 15px 70px;
    }

    .top-nav {
        gap: 15px;
    }

    .top-link {
        font-size: 0.85rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .minimal-link {
        padding: 8px 0;
    }

    .top-link {
        padding: 5px 0;
    }

    .cta-button {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

