/* 
* Paulo Deboleto - Psychologist Landing Page
* Main Stylesheet
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --olive: #373D20;
    --brown: #745837;
    --gold: #C8904D;
    --offwhite: #FFFFFA;

    --primary-color: var(--gold);
    --secondary-color: var(--brown);
    --text-color: var(--brown);
    --light-color: var(--offwhite);
    --dark-color: var(--olive);
    --accent-color: var(--gold);
    --bg-color: var(--offwhite);
    --border-color: #e0d5c1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

cite {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn {
    font-size: 1.1rem;
    padding: 15px 35px;
}

section {
    padding: 60px 0;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: var(--olive);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
    color: var(--offwhite);
}

.logo p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gold);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--offwhite);
    position: relative;
}

nav ul li a:hover {
    color: var(--gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--offwhite);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu styles */
nav ul.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--olive);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    border-radius: 0 0 15px 15px;
    animation: slideDown 0.3s ease-in-out;
}

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

nav ul.show li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
}

nav ul.show a {
    padding: 10px;
    display: block;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 150px;
    padding-bottom: 50px;
    background-color: var(--olive);
    position: relative;
    overflow: hidden;
    color: var(--offwhite);
}

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

.hero-content {
    width: 55%;
}

.hero-content h1,
.hero-content p {
    color: var(--offwhite);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image {
    width: 40%;
    position: relative;
}

.decorative-element {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decorative-element img {
    max-width: 140%;
    z-index: 1;
}

.quote-container {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 30px;
    position: relative;
}

.quote {
    display: inline-block;
    padding: 25px 35px;
    background-color: rgba(255, 255, 250, 0.1);
    max-width: 600px;
    margin: 0 auto;
    border-radius: 60px 20px 60px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

.quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 60px;
    font-family: 'Fraunces', serif;
    color: var(--gold);
    opacity: 0.5;
}

.quote p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--offwhite);
    position: relative;
    z-index: 1;
}

.quote cite {
    font-size: 0.9rem;
    color: var(--gold);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    display: block;
    text-align: right;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: #fff;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about h2 {
    color: var(--olive);
    margin-bottom: 10px;
}

.about h3 {
    color: var(--brown);
    font-weight: 500;
    margin-bottom: 20px;
}

.about p {
    color: var(--brown);
    margin-bottom: 15px;
}

.about .intro {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 20px;
}

.about .btn {
    margin-top: 30px;
    background-color: var(--gold);
    color: var(--olive);
}

.about .btn:hover {
    background-color: var(--olive);
    color: var(--offwhite);
}

.about-content {
    flex: 1;
}

.about-image {
    width: 300px;
    margin-right: 30px;
    position: relative;
}

.frame {
    border: none;
    padding: 15px;
    background-color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-radius: 70px 30px 70px 30px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--gold), var(--olive));
    z-index: -1;
    border-radius: 75px 35px 75px 35px;
}

.frame:hover {
    transform: translateY(-8px) rotate(-2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.frame img {
    width: 100%;
    display: block;
    border-radius: 55px 15px 55px 15px;
    transition: all 0.3s ease;
    transform: scale(1.8) translateX(40px);
}
.about-text {
    margin-top: 20px;
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
    background-color: var(--gold);
    padding: 50px 0;
}

.experience h2 {
    text-align: center;
    margin-bottom: 50px;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.experience-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.experience-item {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 25px 30px;
    border-radius: 30px 70px 70px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.experience-item:nth-child(even) {
    border-radius: 70px 30px 30px 70px;
}

.experience-item:nth-child(3n) {
    border-radius: 40px 80px 40px 80px;
}

.experience-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.experience-icon i {
    font-size: 24px;
    color: white;
}

.experience-info {
    flex: 1;
}

.experience-info h3 {
    margin-bottom: 5px;
    color: var(--olive);
}

.experience-info p {
    color: var(--brown);
    margin-bottom: 10px;
}

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

.experience-content > .experience-item {
    width: 100%;
    border-radius: 50px 50px 50px 50px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 40px;
}

@media (max-width: 992px) {
    .experience-list {
        grid-template-columns: 1fr;
    }
    
    .experience-content {
        flex-direction: column;
    }
}


/* ===== QUOTE SECTION ===== */
.quote-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.quote-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.quote-image {
    width: 40%;
    max-width: 400px;
}

.quote-image img {
    width: 100%;
    border-radius: 5px;
}

.quote-text {
    width: 60%;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--secondary-color);
    line-height: 1.4;
}

.quote-text p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--offwhite);
}

.quote-text cite {
    display: block;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1rem;
    color: var(--gold);
    margin-top: 10px;
}

/* ===== THERAPY SECTION ===== */
.therapy {
    background-color: var(--olive);
    padding: 50px 0;
}

.therapy h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--offwhite);
}

.therapy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
    grid-auto-rows: auto;
}
.therapy-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px 60px 20px 60px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.therapy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.therapy-card.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.card-content {
    position: relative;
    background-color: transparent;
}

.card-icon {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px 60px 0 0;
    background: linear-gradient(135deg, rgba(200, 144, 77, 0.1), rgba(200, 144, 77, 0.2));
}

.card-icon i {
    font-size: 3rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.therapy-card:hover .card-icon i {
    transform: scale(1.1);
    color: var(--offwhite);
}

.card-content h3 {
    padding: 20px 25px;
    margin: 0;
    color: var(--offwhite);
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    background-color: transparent;
    font-weight: 600;
    width: 100%;
}

.card-content h3::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .9rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.therapy-card:hover .card-content h3::after {
    color: var(--offwhite);
    transform: translateY(-50%) scale(1.1);
}

.therapy-card.active .card-content h3::after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--offwhite);
}

.card-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: transparent;
    color: var(--offwhite);
}

.therapy-card.active .card-expanded {
    max-height: 300px;
}

.card-expanded p {
    padding: 0 25px 25px 25px;
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
    color: var(--offwhite);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Responsive styles for therapy cards */
@media (max-width: 1200px) {
    .therapy-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .therapy-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .therapy-card {
        border-radius: 15px 30px 15px 30px;
    }
    
    .card-icon {
        height: 60px;
        border-radius: 15px 30px 0 0;
        display: none;
    }
    
    .card-content {
        display: flex;
        align-items: center;
        padding: 0;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
        padding: 20px 50px 20px 25px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }
    
    .card-content h3::before {
        content: '';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 1.5rem;
        color: var(--gold);
    }
    
    .therapy-card:nth-child(1) .card-content h3::before {
        content: '\f5dc'; /* fa-brain */
    }
    
    .therapy-card:nth-child(2) .card-content h3::before {
        content: '\f7a9'; /* fa-heart-broken */
    }
    
    .therapy-card:nth-child(3) .card-content h3::before {
        content: '\f4ba'; /* fa-dove */
    }
    
    .therapy-card:nth-child(4) .card-content h3::before {
        content: '\f004'; /* fa-heart */
    }
    
    .therapy-card:nth-child(5) .card-content h3::before {
        content: '\f0b1'; /* fa-briefcase */
    }
    
    .therapy-card:nth-child(6) .card-content h3::before {
        content: '\f4fc'; /* fa-user-check */
    }
    
    .card-expanded p {
        padding: 0 25px 25px 25px;
        padding-top: 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .therapy-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .therapy-card {
        border-radius: 12px 24px 12px 24px;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
        padding: 18px 45px 18px 20px;
        gap: 10px;
    }
    
    .card-content h3::before {
        font-size: 1.3rem;
    }
    
    .card-expanded p {
        padding: 0 20px 20px 20px;
        padding-top: 18px;
        font-size: 0.9rem;
    }
}

/* ===== FAQ SECTION ===== */
.faq {
    background-color: var(--olive);
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--offwhite);
}

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

.faq-item {
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 35px 15px 35px 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:nth-child(even) {
    border-radius: 15px 35px 15px 35px;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--offwhite);
    font-weight: 500;
    font-family: 'Fraunces', serif;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--offwhite);
    padding: 0 25px;
    opacity: 0.9;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram {
    background-color: var(--offwhite);
}

.instagram h2 {
    text-align: center;
    color: var(--olive);
}

.instagram-feed {
    margin-top: 50px;
}

.instagram-posts {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}

.instagram-media {
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 30% !important;
}

.instagram-link {
    text-align: center;
    margin-top: 40px;
}

.instagram-link a {
    color: var(--olive);
    background-color: var(--gold);
}

.instagram-link a:hover {
    background-color: var(--brown);
    color: var(--offwhite);
}



/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--gold);
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--olive);
}

.contact p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--olive);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background-color: white;
    padding: 30px;
    border-radius: 40px 20px 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:nth-child(even) {
    border-radius: 20px 40px 20px 40px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-item .icon {
    width: 70px;
    height: 70px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-item .icon i {
    font-size: 30px;
    color: white;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: var(--olive);
}

.contact-item p, .contact-item a {
    color: var(--brown);
}

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

/* Responsive styles for contact section */
@media (max-width: 992px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 25px;
    }
    
    .contact-item .icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-item .icon i {
        font-size: 24px;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-logo p {
    color: #aaa;
    margin-bottom: 0;
}

.footer-links h4, .footer-social h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }

    .about .container,
    .experience-content,
    .quote-section .container {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image,
    .about-image,
    .about-content,
    .experience-list,
    .experience-description,
    .quote-image,
    .quote-text {
        width: 100%;
    }
    
    .hero-image {
        margin-bottom: 40px;
    }
    
    .decorative-element {
        height: 400px;
    }
    
    .decorative-element img {
        max-width: 120%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Reorder hero section for mobile */
    .hero .container {
        flex-direction: column-reverse;
    }
    
    .hero-image {
        width: 70%;
        margin-bottom: 30px;
    }
    
    .decorative-element {
        height: 300px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    /* Quote container mobile adjustments */
    .quote-container {
        margin-top: 30px;
        padding: 0 20px 30px;
    }
    
    .quote {
        padding: 20px 25px;
        border-radius: 40px 15px 40px 15px;
    }
    
    /* Experience section mobile adjustments */
    .experience-list {
        grid-template-columns: 1fr;
    }
    
    .experience-info h3 {
        font-size: 1.2rem;
    }
    
    .instagram-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-image {
        width: 60%;
    }
    
    .decorative-element {
        height: 250px;
    }
    
    /* Quote container small mobile adjustments */
    .quote-container {
        margin-top: 20px;
        padding: 0 15px 25px;
    }
    
    .quote {
        padding: 15px 20px;
    }
    
    .quote p {
        font-size: 1.1rem;
    }
    
    .quote cite {
        font-size: 0.9rem;
    }
    
    /* Experience section small mobile adjustments */
    .experience-info h3 {
        font-size: 1.1rem;
    }
    
    .experience-item {
        padding: 20px;
    }
    
    .experience-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .experience-icon i {
        font-size: 20px;
    }
    
    .instagram-posts {
        grid-template-columns: 1fr;
    }
}

/* Section background color utilities */
.section-offwhite {
    background-color: var(--offwhite) !important;
}
.section-offwhite h2, 
.section-offwhite h3, 
.section-offwhite p, 
.section-offwhite a:not(.btn) {
    color: var(--olive) !important;
}

.section-white {
    background-color: #fff !important;
}
.section-white h2, 
.section-white h3, 
.section-white p, 
.section-white a:not(.btn) {
    color: var(--brown) !important;
}

.section-gold {
    background-color: var(--gold) !important;
}

.section-olive {
    background-color: var(--olive) !important;
}
.section-olive h2, 
.section-olive h3, 
.section-olive p, 
.section-olive a:not(.btn) {
    color: var(--offwhite) !important;
}

.section-gold h2, 
.section-gold h3, 
.section-gold p, 
.section-gold a:not(.btn) {
    color: var(--olive) !important;
}

.section-brown {
    background-color: var(--brown) !important;
}

.section-olive {
    background-color: var(--olive) !important;
}


.btn.cta-btn {
    background-color: var(--gold);
    color: var(--olive);
    font-weight: 600;
    padding: 12px 25px;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(200, 144, 77, 0.3);
}

.btn.cta-btn:hover {
    background-color: var(--offwhite);
    color: var(--olive);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 144, 77, 0.4);
}
