@font-face {
    font-family: 'Black Mango';
    src: url('./fonts/black-mango-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Now Alt';
    src: url('./fonts/NowAlt-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Handshake';
    src: url('./fonts/Handshake.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Now Alt', Arial, sans-serif;
    color: white;
    background-color: #3f1e1f;
}

/* Home container */
.home {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    background-color: #3f1e1f;
}

/* Intro section */
.intro {
    position: absolute;
    top: 124px;
    left: 0;
    width: 100vw;
    height: 55vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4vw;
    height: 124px;
    position: relative;
}

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

.logo img {
    height: 12vw;
    max-height: 150px;
    min-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-bar {
    display: flex;
    gap: 3vw;
    flex-wrap: wrap;
    align-items: center;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 0;
    display: flex;
    align-items: center;
    height: 40px;
}

.nav-cta {
    background-color: #fff;
    color: #3f1e1f !important;
    border-radius: 40px;
    padding: 10px 44px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 0 25px rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-left: 12px;
    margin-right: 0;
    vertical-align: middle;
    min-width: 140px;
}
.nav-cta:hover,
.nav-cta:focus {
    background-color: #E9D6E0;
    color: #3f1e1f;
    transform: translateY(-2px) scale(1.04);
}

/* Video intro */
.video-intro {
    position: relative;
    width: 100vw;
    height: 55vh;
    min-height: 300px;
    overflow: hidden;
    z-index: 0;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 55vh;
    min-height: 300px;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
}

/* Hero section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    pointer-events: auto;
}

.hero-title, .hero-text, .cta-button {
    background: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: initial;
    pointer-events: auto;
}

.hero-title h1, .hero-text, .cta-button {
    background: rgba(63,30,31,0.18);
    border-radius: 12px;
    padding: 0.2em 0.8em;
    margin-bottom: 0.5em;
}

.hero-title h1 {
    font-size: 8vw;
    max-font-size: 120px;
    min-font-size: 40px;
    margin-bottom: 2vw;
    font-family: 'Handshake', Arial, sans-serif !important;
    line-height: 1.05;
    word-break: break-word;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    font-size: 1.5vw;
    min-font-size: 18px;
    margin-bottom: 1vw;
}

.cta-button {
    background-color: white;
    color: black;
    width: 40vw;
    max-width: 180px;
    height: 8vw;
    max-height: 56px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 25px rgba(255, 255, 255, 1);
    cursor: pointer;
}

.cta-button span {
    font-size: 2vw;
    min-font-size: 20px;
    font-weight: bold;
}

/* Section 2 */
.section2, .section3, .footer {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.section2, .section3 {
    min-height: 70vh;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.section3 {
    background-color: #F7F1F5;
}

.who-are-we, .what-is-acai {
    display: flex;
    flex-direction: row;
    width: 90vw;
    max-width: 1000px;
    gap: 4vw;
    align-items: center;
    margin: 0 auto;
}

.who-text, .acai-text {
    flex: 1;
    color: white;
    padding: 2vw;
}

.who-text h2, .acai-text h2 {
    font-size: 48px;
    margin-bottom: 1.5vw;
    font-family: 'Handshake', Arial, sans-serif !important;
}

.who-text p, .acai-text p {
    font-size: 22px;
    line-height: 1.5;
}

.who-photo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-photo img {
    max-width: 100%;
    max-height: 40vw;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    object-fit: cover;
}

.acai-photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acai-photo img {
    max-width: 100%;
    max-height: 40vw;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    object-fit: cover;
}

.acai-photo video {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    object-fit: cover;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* So clicks go through to the video */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-icon {
    pointer-events: auto; /* Allow click on icon if needed */
    cursor: pointer;
    transition: opacity 0.2s;
}

/* Footer */
.footer {
    width: 100%;
    background-color: #3f1e1f;
    padding: 40px 0 20px 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90vw;
    max-width: 1100px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-icon svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: none;
    transition: transform 0.2s;
}
.footer-icon:hover svg {
    transform: scale(1.15);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    text-align: right;
}
.footer-links a:hover {
    color: #E9D6E0;
}

.footer-bottom {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Responsive footer */
@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .footer-links {
        align-items: center;
        gap: 16px;
    }
    .footer-links a {
        text-align: center;
    }
}

/* Social icons */
.rrss {
    position: absolute;
    top: 26px;
    left: 691px;
    display: flex;
    gap: 30px;
}

.social-icon {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
}

/* Responsive styles */
@media (max-width: 900px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 2vw;
    }
    .nav-bar {
        display: none;
    }
    .hamburger {
        margin-left: auto;
        margin-right: 0;
    }
    .header .hamburger {
        display: flex !important;
    }
    .who-are-we, .what-is-acai {
        flex-direction: column;
        gap: 3vw;
        text-align: center;
    }
    .who-photo, .acai-photo {
        margin-bottom: 2vw;
    }
    .logo img {
        height: 20vw;
        min-height: 100px;
    }
    .video-intro, .background-video, .intro {
        height: 38vh;
        min-height: 180px;
    }
}

@media (max-width: 600px) {
    .home {
        padding: 0;
    }
    .header {
        padding: 2vw 1vw;
    }
    .hero-title h1 {
        font-size: 1.2rem;
    }
    .hero-text {
        font-size: 1rem;
    }
    .cta-button {
        width: 80vw;
        max-width: none;
        height: 12vw;
        max-height: none;
    }
    .section2, .section3, .footer {
        min-height: 400px;
    }
    .who-photo img, .acai-photo img {
        max-height: 200px;
    }
    .acai-photo video {
        max-width: 95vw;
    }
    .video-icon svg {
        width: 40px;
        height: 40px;
    }
    .logo img {
        height: 25vw;
        min-height: 120px;
    }
    .video-intro, .background-video, .intro {
        height: 28vh;
        min-height: 120px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: #3f1e1f;
    box-shadow: -2px 0 16px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: transform 0.3s ease;
    transform: translateX(100%);
}
.mobile-menu-overlay.open {
    display: block;
    transform: translateX(0);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 60px 30px;
    gap: 32px;
}
.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: color 0.2s;
}
.mobile-nav a:hover {
    color: #E9D6E0;
}

/* Optional: prevent scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

.cta-cards {
    width: 100%;
    background: #3f1e1f;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.cards-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    width: 90vw;
    justify-content: center;
    align-items: stretch;
}

.cta-card {
    background: #fff;
    color: #3f1e1f;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    text-align: center;
    padding: 48px 24px 40px 24px;
    flex: 1 1 0;
    min-width: 220px;
    max-width: 320px;
    min-height: 420px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

.cta-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: bold;
}

.card-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #E9D6E0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    overflow: hidden;
}

.card-image img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
}

.card-subtitle {
    font-size: 1.1rem;
    color: #3f1e1f;
    margin-top: 8px;
}

/* Responsive styles for cards */
@media (max-width: 900px) {
    .cards-container {
        gap: 24px;
    }
    .cta-card {
        padding: 36px 12px 28px 12px;
        min-width: 160px;
        max-width: 100%;
        min-height: 340px;
    }
}

@media (max-width: 600px) {
    .cards-container {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .cta-card {
        width: 90vw;
        max-width: 400px;
        min-height: 300px;
    }
}

.where-we-are {
    width: 100%;
    background: #3f1e1f;
    padding: 60px 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.where-we-are h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Handshake', Arial, sans-serif !important;
}

.maps-container {
    display: flex;
    gap: 32px;
    justify-content: center;
    width: 90vw;
    max-width: 1200px;
    flex-wrap: wrap;
}

.map-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 18px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;
    max-width: 350px;
    flex: 1 1 300px;
}

.map-item iframe {
    width: 100%;
    height: 220px;
    border: none;
    border-radius: 12px;
    margin-bottom: 12px;
}

.map-item p {
    color: #3f1e1f;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 900px) {
    .maps-container {
        gap: 20px;
    }
    .map-item iframe {
        height: 180px;
    }
}

@media (max-width: 700px) {
    .maps-container {
        flex-direction: column;
        align-items: center;
    }
    .map-item {
        width: 90vw;
        max-width: 400px;
    }
    .map-item iframe {
        height: 180px;
    }
}

.who-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.who-tab {
    background: #E9D6E0;
    color: #3f1e1f;
    border: none;
    border-radius: 18px;
    padding: 8px 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    outline: none;
}

.who-tab.active,
.who-tab:focus {
    background: #3f1e1f;
    color: #fff;
}

.who-tab-content {
    min-height: 80px;
    position: relative;
}

.who-panel {
    display: none;
    font-size: 22px;
    line-height: 1.5;
    color: white;
    animation: fadeIn 0.4s;
    position: absolute;
    left: 0; right: 0; top: 0;
}

.who-panel.active {
    display: block;
    position: relative;
}

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

html {
    scroll-behavior: smooth;
}

section, footer {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 700px) {
    section, footer {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

.intro,
.section2,
.section3,
.cta-cards,
.where-we-are,
.footer {
    /* Remove any conflicting margin or padding here */
    /* padding-top and padding-bottom are now handled by the section selector */
}

section > .container,
section > div:not(.maps-container):not(.cards-container):not(.who-are-we):not(.what-is-acai) {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 90vw;
}

.section3 {
    min-height: 60vh;
    background-color: #F7F1F5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.acai-text {
    flex: 1;
    color: #3f1e1f;
    padding: 2vw;
}

.acai-text h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #3f1e1f;
}

.acai-text p {
    font-size: 22px;
    line-height: 1.5;
    color: #3f1e1f;
}

/* FAQ Styles */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #E9D6E0;
    color: #3f1e1f;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: bold;
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #d4b8c4;
}

.faq-question.active {
    background: #3f1e1f;
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.faq-answer {
    background: #fff;
    color: #3f1e1f;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 0 0 12px 12px;
    margin-top: -6px;
    opacity: 0;
}

.faq-question.active + .faq-answer {
    padding: 20px;
    height: auto;
    opacity: 1;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: inherit;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 2em;
}

.store-info {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.store-info:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.store-info h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.store-info p {
    margin: 5px 0;
    color: #666;
}

.store-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-info a:hover {
    color: #666;
}

.contact-form {
    flex: 1;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: inherit;
}

.contact-form h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 2em;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    color: #3f1e1f;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
}

.submit-button {
    background: #333;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #444;
}

/* Responsive styles for contact page */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}

/* Eventos Page Styles */
.events-section {
    padding: 80px 20px;
    background-color: #F7F1F5;
    min-height: calc(100vh - 124px);
}

.events-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.calendar-container {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    color: inherit;
}

.calendar-container h2 {
    color: #3f1e1f;
    margin-bottom: 24px;
    font-size: 2rem;
}

.event-details {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    color: inherit;
}

.event-details h2 {
    color: #3f1e1f;
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.event-details p {
    color: #3f1e1f;
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.event-form {
    margin-top: 24px;
}

.event-form .form-group {
    margin-bottom: 20px;
}

.event-form label {
    display: block;
    margin-bottom: 8px;
    color: #3f1e1f;
    font-weight: 500;
}

.event-form input,
.event-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E9D6E0;
    border-radius: 12px;
    font-size: 1rem;
    color: #3f1e1f;
    background: #fff;
    transition: border-color 0.3s ease;
}

.event-form input:focus,
.event-form textarea:focus {
    outline: none;
    border-color: #3f1e1f;
}

.event-form .submit-button {
    background: #3f1e1f;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    margin-top: 20px;
}

.event-form .submit-button:hover {
    background: #4a2d30;
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

.no-event {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #3f1e1f;
    font-size: 1.2rem;
    text-align: center;
}

/* FullCalendar Customization */
.fc {
    font-family: 'Black Mango', Arial, sans-serif;
}

.fc .fc-toolbar-title {
    color: #3f1e1f;
    font-size: 1.5rem !important;
}

.fc .fc-button-primary {
    background-color: #3f1e1f !important;
    border-color: #3f1e1f !important;
}

.fc .fc-button-primary:hover {
    background-color: #4a2d30 !important;
    border-color: #4a2d30 !important;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: #E9D6E0 !important;
}

.fc .fc-event {
    background-color: #3f1e1f !important;
    border-color: #3f1e1f !important;
    cursor: pointer;
}

.fc .fc-event:hover {
    background-color: #4a2d30 !important;
    border-color: #4a2d30 !important;
}

/* Responsive styles for events page */
@media (max-width: 900px) {
    .events-container {
        flex-direction: column;
    }
    
    .calendar-container,
    .event-details {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .events-section {
        padding: 40px 10px;
    }
    
    .events-container {
        padding: 10px;
    }
    
    .calendar-container,
    .event-details {
        padding: 20px;
    }
    
    .calendar-container h2,
    .event-details h2 {
        font-size: 1.5rem;
    }
}

.locations-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.location-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    min-height: 260px;
}

.location-img {
    flex: 1 1 55%;
    min-width: 260px;
    max-width: 600px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9e6e3;
    overflow: hidden;
}

.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.location-details {
    flex: 1 1 55%;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.location-title.handshake {
    font-family: 'Handshake', Arial, sans-serif !important;
    font-size: 2.2rem;
    color: #3f1e1f;
    margin-bottom: 16px;
}

.location-address {
    color: #3f1e1f;
    font-size: 1.1rem;
    text-decoration: underline;
    margin-bottom: 18px;
    display: inline-block;
}

.location-address:hover {
    color: #8a5a6f;
}

.location-hours {
    color: #3f1e1f;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .location-card {
        flex-direction: column !important;
        min-height: 0;
    }
    .location-img, .location-details {
        max-width: 100%;
        min-width: 0;
        padding: 24px 16px;
    }
    .location-img {
        height: 500px;
        min-width: 0;
        max-width: 100%;
    }
    .location-img img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }
}
@media (max-width: 600px) {
  .location-img {
    height: 420px;
  }
  .location-img img {
    height: 420px;
  }
} 

@media (max-width: 900px) {
  .video-intro, .background-video {
    height: 60vw;
    min-height: 260px;
    max-height: 80vw;
  }
  .hero-title h1 {
    font-size: 7vw;
    min-font-size: 28px;
    text-align: center;
    margin-bottom: 3vw;
  }
  .cta-button {
    width: 60vw;
    max-width: 140px;
    height: 10vw;
    max-height: 40px;
    font-size: 1.1rem;
    padding: 0 12px;
  }
  .hero-text {
    font-size: 2.8vw;
    min-font-size: 16px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .video-intro, .background-video {
    height: 100vh;
    min-height: 320px;
    max-height: 100vh;
  }
  .intro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
  }
  .hero {
    width: 100vw;
    height: 100vh;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
  }
  .hero-title {
    margin-top: 24vw;
  }
  .hero-title h1 {
    font-size: 4.4rem;
    min-font-size: 28px;
    text-align: center;
    margin: 0 auto 4vw auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-button {
    width: 80vw;
    max-width: 180px;
    height: 14vw;
    max-height: 56px;
    font-size: 1.2rem;
    padding: 0 18px;
    margin-top: 3vw;
    margin-bottom: 0;
    box-shadow: 0 0 18px rgba(255,255,255,0.8);
  }
  .cta-button span {
    font-size: 1.3rem;
    min-font-size: 20px;
    font-weight: bold;
  }
  .hero-text {
    font-size: 1.3rem;
    min-font-size: 18px;
    text-align: center;
    margin-bottom: 3vw;
  }
} 

@media (max-width: 900px) {
  .who-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .who-photo img {
    width: 70vw;
    max-width: 70vw;
    height: 420px;
    min-height: 220px;
    max-height: 60vw;
    object-fit: cover;
    border-radius: 24px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 600px) {
  .who-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .who-photo img {
    width: 70vw;
    max-width: 70vw;
    height: 340px;
    min-height: 180px;
    max-height: 80vw;
    object-fit: cover;
    border-radius: 24px;
    margin: 0 auto;
    display: block;
  }
} 

@media (max-width: 900px) {
  .logo img {
    height: 38vw;
    min-height: 160px;
    max-height: 260px;
  }
}
@media (max-width: 600px) {
  .logo img {
    height: 52vw;
    min-height: 180px;
    max-height: 320px;
  }
} 