/* CSS Variables */
:root {
    --primary-teal: #55a39a;
    --background-cream: #fff8ed;
    --text-gray: #666666;
    --text-dark: #333333;
    --white: #ffffff;
}

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

body {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--background-cream);
}

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

.content {
    padding: 60px 0;
}

/* Hero Sections */
.hero {
    width: 100%;
    height: 100vh;
    background-image: url('public/OrganicSoundJourneys.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.bio-hero, .offering-hero, .contact-hero {
    width: 100%;
    height: 35vh;
    background-image: url('public/offerings-back.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 40px;
    z-index: 2;
}

.logo-container {
    position: absolute;
    top: 40px;
    left: 40px;
}

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

/* Navigation */
.nav-menu {
    position: absolute;
    top: 40px;
    right: 80px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #55a39a;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    transition: color 0.3s ease;
    cursor: pointer;
}

.dropdown-toggle:hover {
    color: #55a39a;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #55a39a;
    color: white;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 80px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Title Overlay */
.title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.title-overlay h1 {
    color: white;
    font-size: 48px;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Home Page Styles */
.home-content {
    max-width: 800px;
    margin: 0 auto;
}

.opening-quote {
    font-style: italic;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-teal);
}

.author {
    text-align: right;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.home-content h2 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 30px;
}

.home-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Align bullets with left edge of paragraph text on home section */
.home-content ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.home-content li {
    margin: 0 0 10px 0;
    position: relative;
    padding-left: 0;
}

.home-content li::before {
    content: "• ";
    color: var(--primary-teal);
    position: static;
}

.offerings-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.discovery-call-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.discovery-call-link:hover {
    color: #4a9087;
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-teal);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.action-btn:hover {
    background-color: #4a9087;
    color: white;
    text-decoration: none;
}

.offerings-link:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

.closing-quote {
    margin-top: 40px;
    padding: 30px;
    background-color: rgba(85, 163, 154, 0.1);
    border-left: 4px solid var(--primary-teal);
    font-style: italic;
}

.closing-quote p {
    margin-bottom: 10px;
}

.closing-quote cite {
    font-weight: 500;
    color: var(--text-dark);
}

/* Bio Page Styles */
.bio-section {
    margin-bottom: 50px;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

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

.amanda-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bio-text h2 {
    color: var(--primary-teal);
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;
}

.bio-intro {
    font-size: 20px;
    color: var(--primary-teal);
    font-style: italic;
    margin-bottom: 30px;
}

.bio-story p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.bio-story h3 {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px 0;
}

.bio-story ul {
    margin: 20px 0 30px 20px;
}

.bio-story li {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.bio-seal {
    text-align: center;
    margin-top: 40px;
}

.seal-logo {
    width: 150px;
    height: auto;
    opacity: 0.8;
}

/* Offerings Page Styles */
.offerings-list {
    max-width: 800px;
    margin: 0 auto;
}

.offering-item {
    margin-bottom: 50px;
}

.offering-item h2 {
    margin-bottom: 15px;
}

.offering-item h2 a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.offering-item h2 a:hover {
    color: var(--primary-teal);
}

.offering-item p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Individual Offering Pages */
.session-info {
    margin-bottom: 50px;
}

.session-info h2 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.session-info p {
    font-size: 20px;
    line-height: 1.8;
}

.highlights h3, .session-highlights h3 {
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
}

.highlight-item {
    margin-bottom: 40px;
}

.highlight-item h4 {
    color: var(--primary-teal);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-item p {
    font-size: 18px;
    line-height: 1.7;
}

.frequency-options, .investment, .important-considerations, .navigation-links, .testimonial {
    margin-top: 50px;
}

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

.navigation-links p {
    margin-bottom: 15px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

.frequency-options h3, .investment h3, .important-considerations h3 {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.frequency-options ul {
    list-style: none;
    margin-left: 0;
}

.frequency-options li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.frequency-options li:before {
    content: "•";
    color: var(--primary-teal);
    position: absolute;
    left: 0;
}

.investment p, .important-considerations p {
    font-size: 18px;
    line-height: 1.8;
}

.testimonial blockquote {
    background-color: rgba(85, 163, 154, 0.1);
    padding: 30px;
    border-left: 4px solid var(--primary-teal);
    font-style: italic;
    margin: 0;
}

.testimonial blockquote p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

.testimonial blockquote cite {
    display: block;
    margin-top: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Soul Wisdom Page */
.session-info p {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

.offerings {
    max-width: 800px;
    margin: 0 auto;
}

.offering-item h3 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.offering-item p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.booking-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
}

.booking-link:hover {
    text-decoration: underline;
}

.book-sessions-btn {
    display: inline-block;
    background-color: var(--primary-teal);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.book-sessions-btn:hover {
    background-color: var(--text-dark);
    text-decoration: none;
}

/* Sacred Sound Page */
.consultation {
    margin-top: 50px;
    text-align: center;
}

.consultation p {
    font-size: 18px;
    color: var(--text-dark);
}

.consultation a {
    color: var(--primary-teal);
    text-decoration: none;
}

.consultation a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-section {
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: var(--text-dark);
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    color: var(--primary-teal);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 18px;
    line-height: 1.6;
}

.contact-image {
    text-align: center;
    margin-bottom: 20px;
}

.contact-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-container label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
}

.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-form-container input:focus,
.contact-form-container select:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.contact-form-container select {
    cursor: pointer;
    background-color: white;
}

.contact-form-container textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form-container button {
    background: var(--primary-teal);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.contact-form-container button:hover {
    background: #2a8b8b;
}

.contact-form-container button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.cf-turnstile {
    margin: 20px 0;
}

.contact-form h3 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background-color: var(--primary-teal);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #4a9087;
}

/* Thank You Page */
.thank-you-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
}

.success-message {
    background: rgba(255, 255, 255, 0.8);
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.success-message h2 {
    color: var(--primary-teal);
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
}

.success-message p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.success-message p:last-of-type {
    margin-bottom: 40px;
}

.return-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-teal);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.return-btn:hover {
    background-color: #4a9087;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-overlay {
        padding: 20px;
    }
    
    .logo-container {
        top: 20px;
        left: 20px;
    }
    
    .logo-img {
        width: 150px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1001;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 24px;
        color: white;
    }
    
    .dropdown {
        position: relative;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-toggle {
        color: white;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        margin: 0;
    }
    
    .dropdown-menu {
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        color: #55a39a;
        font-size: 20px;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
        right: 20px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }
    
    .title-overlay h1 {
        font-size: 36px;
    }
    
    .content {
        padding: 40px 0;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bio-text h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .bio-intro {
        font-size: 18px;
        text-align: center;
    }
    
    .bio-story p {
        font-size: 16px;
    }
    
    .bio-story h3 {
        font-size: 22px;
    }
    
    .bio-story li {
        font-size: 16px;
    }
    
    .offering-item h2 a {
        font-size: 22px;
    }
    
    .offering-item p {
        font-size: 16px;
    }
    
    .offering-item {
        margin-bottom: 35px;
    }
    
    .session-info h2 {
        font-size: 24px;
    }
    
    .session-info p {
        font-size: 18px;
    }
    
    .highlights h3, .session-highlights h3 {
        font-size: 28px;
    }
    
    .highlight-item h4 {
        font-size: 20px;
    }
    
    .highlight-item p {
        font-size: 16px;
    }
    
    .session-info p {
        font-size: 18px;
    }
    
    .offering-item h3 {
        font-size: 24px;
    }
    
    .offering-item p {
        font-size: 16px;
    }
    
    .session-info p, .consultation p, .testimonial blockquote p {
        font-size: 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-info > p {
        font-size: 18px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-form h3 {
        font-size: 24px;
    }
    
    .contact-details {
        gap: 25px;
    }
    
    .contact-item h3 {
        font-size: 20px;
    }
    
    .contact-item p {
        font-size: 16px;
    }
    
    .success-message {
        padding: 40px 30px;
    }
    
    .success-message h2 {
        font-size: 28px;
    }
    
    .success-message p {
        font-size: 18px;
    }
    
    .footer {
        margin-top: 20px;
        padding: 20px 0;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-btn {
        width: 100%;
        min-width: auto;
    }
}
