/* Color Variables */
:root {
    --primary-gold: #D4AF37;
    --sage-green: #7C9885;
    --hover-gold: #B8941F;
    --text-gray: #6b7280;
    --dark-text: #111418;
}

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

body {
    font-family: 'Noto Sans', sans-serif;
    color: #111418;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.header-main {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-logo h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #111418;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.header-nav a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-nav a:hover {
    color: var(--primary-gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #6b7280;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: var(--primary-gold);
}

/* Contact Bar - now inside header */
.contact-bar {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 0.75rem 0;
}

.contact-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #475569;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    white-space: nowrap;
    text-decoration: none;
}

.contact-item span {
    font-size: 0.8rem !important;
    font-weight: 400 !important;
}

.contact-item svg {
    color: var(--sage-green);
    flex-shrink: 0;
    width: 14px !important;
    height: 14px !important;
}

.contact-item:hover {
    color: var(--primary-gold);
}

.about-section {
    text-align: left;
}

.about-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-text {
    flex: 3;
}

.about-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.headshot {
    width: 100%;
    max-width: 280px;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(184, 206, 228, 0.25), 
                0 4px 24px rgba(0, 0, 0, 0.10);
}

/* Responsive design for about section */
@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-image {
        order: -1; /* Move image above text on mobile */
        margin-bottom: 1rem;
        justify-content: center;
        display: flex;
        width: 100%;
        text-align: center;
    }
    
    .about-image .headshot {
        margin: 0 auto;
    }
}
/* Base styles matching original Streamlit app */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', 'Noto Sans', sans-serif;
    color: #111418;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1 {
    font-size: 2.25rem; /* 36px */
    line-height: 1.2;
    letter-spacing: -0.033em;
}

h2 {
    font-size: 1.375rem; /* 22px */
    line-height: 1.2;
    letter-spacing: -0.015em;
}

p, a, span, div {
    font-size: 1rem; /* 16px */
    line-height: 1.5;
}

/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2.5rem;
    border-bottom: 1px solid #eaedf0;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo h2 {
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    letter-spacing: -0.015em;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2.25rem; /* 36px */
}

.header-nav a {
    text-decoration: none;
    color: #111418;
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-nav a:hover {
    color: #6366f1;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #6b7280;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #6366f1;
}

/* Main content styles */
.main-content {
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.about-content ul {
    text-align: left;
    margin-left: 1.5em;
}

/* Hero section styles */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
                url('https://www.publicdomainpictures.net/pictures/10000/velka/1-1255945040QQxM.jpg')
                no-repeat center center;
    background-size: cover;
    padding: 4rem 2rem;
    border-radius: 0.75rem; /* 12px */
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 2rem;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-gold);
    color: white;
    border-color: white;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #f3f4f6;
    color: #374151;
    border-color: #d1d5db;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
    border-color: #9ca3af;
}

.btn-outline {
    background-color: transparent;
    color: var(--sage-green);
    border-color: var(--sage-green);
}

.btn-outline:hover {
    background-color: var(--sage-green);
    color: white;
}

/* Section spacing */
section {
    margin-bottom: 4rem;
}

section h2 {
    margin-bottom: 2rem;
    text-align: center;
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    border: 1px solid #d5dbe2;
    border-radius: 0.5rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    text-align: center;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #111418;
}

/* Pricing section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    border: 1px solid #d5dbe2;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-content {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.033em;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.pricing-card p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

/* Reviews section */
.testimonials-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-container iframe {
    border-radius: 0.5rem;
    width: 100%;
}

/* About section */
.about-content p {
    margin-bottom: 1rem;
    color: #374151;
}

/* Location section */
.studio-photos {
    max-width: 1400px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.photo-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-map-center {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-embed {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 0 0 6px rgba(184, 206, 228, 0.25), 
                0 4px 24px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 20px;
}

.map-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
    text-align: center;
}

.map-link:hover {
    color: var(--hover-gold);
}

/* Contact Bar */
.contact-bar {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.contact-item svg {
    color: var(--sage-green);
    flex-shrink: 0;
}

.contact-item:hover {
    color: var(--sage-green);
}

/* Main content */

/* Footer */
.footer {
    background-color: #f3f4f6;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid #e5e7eb;
}

.footer-content p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-main {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .header-content {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .header-nav {
        gap: 1rem;
        flex: 1;
        justify-content: center;
    }

    .social-icons {
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .main-content {
        padding: 1rem;
    }

    .testimonials-container {
        padding: 0 1rem;
    }

    .studio-photos {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .photo-grid img {
        height: 200px;
    }

    .location-map-center {
        padding: 0 1rem;
    }

    .map-image img {
        max-width: 350px;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .contact-bar-content {
        display: flex;
        flex-direction: row;
        gap: 0.45rem;
        padding: 0 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .contact-bar-content::-webkit-scrollbar {
        display: none;
    }

    .contact-item {
        font-size: 0.7rem !important;
        font-weight: 400 !important;
        justify-content: flex-start;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .contact-item span {
        font-size: 0.7rem !important;
        font-weight: 400 !important;
    }
}

/* Tablet/Half-screen responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-bar-content {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        padding: 0 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .contact-bar-content::-webkit-scrollbar {
        display: none;
    }
    
    .contact-item {
        font-size: 0.75rem !important;
        font-weight: 400 !important;
        justify-content: flex-start;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .contact-item span {
        font-size: 0.75rem !important;
        font-weight: 400 !important;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Medium screens - 4 columns but with smaller gap */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

/* Very small screens - allow 2 columns for pricing */
@media (max-width: 480px) {
    .header-main {
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .header-content {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .header-nav {
        gap: 0.5rem;
        flex: 1;
        justify-content: center;
    }

    .header-nav a {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .social-icons {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .header-logo h2 {
        font-size: 1.25rem;
    }

    .contact-bar-content {
        gap: 0.5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    .pricing-card h3 {
        font-size: 1rem;
    }
    
    .pricing-card .price {
        font-size: 1.75rem;
    }
}
