/* Mobile CSS for About Page (up to 767px) */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block !important;
    background: none;
    border: none;
    color: #3b4a6b;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
    .vh-nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
}

/* Base styles */
.section-container {
    padding: 30px 20px;
    max-width: 100%;
    margin: 0 auto;
}

.section-content {
    padding: 0;
}

.columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: left;
}

.column {
    width: 100%;
}

/* Our Story Section - Mobile Layout */
.section-container:first-of-type .story-content {
    order: 1;
    padding-top: 0 !important;
}

.section-container:first-of-type .story-image {
    order: 2;
}

/* Override base styles for mobile CTA button centering */
.section-container:first-of-type .cta-button-container {
    order: 3;
    margin: 30px 0 20px 0 !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

.section-container:first-of-type .cta-button {
    display: inline-block !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Additional override to ensure centering works */
.cta-button-container {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Force override any conflicting styles from other CSS files */
body .section-container:first-of-type .cta-button-container,
html .section-container:first-of-type .cta-button-container {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

/* Most specific override to ensure mobile centering */
@media (max-width: 767px) {
    .section-container:first-of-type .cta-button-container,
    .cta-button-container {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .section-container:first-of-type .cta-button,
    .cta-button {
        display: inline-block !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
}

/* Why Book Section - Mobile Layout */
.section-container:nth-of-type(2) .columns {
    display: flex !important;
    flex-direction: column !important;
}

.section-container:nth-of-type(2) .columns .column:first-child {
    order: 2 !important;
}

.section-container:nth-of-type(2) .columns .column:nth-child(2) {
    order: 1 !important;
}

/* Typography */
.story-title {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    font-family: 'Montserrat', sans-serif !important;
}

.story-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.why-book-content h2 {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    font-family: 'Montserrat', sans-serif !important;
    text-align: center !important;
    color: #2c3e50 !important;
    line-height: 1.2 !important;
    font-style: normal !important;
}

.why-book-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

/* Images */
.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}

.section-container:first-of-type .story-image img {
    object-position: center 35%;
}

/* Button */
.cta-button {
    display: inline-block;
    background: transparent;
    border: 2px solid #3b4a6b;
    color: #3b4a6b;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0px;
    width: auto;
}

.cta-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 182, 193, 0.15), rgba(135, 206, 250, 0.1), rgba(255, 255, 255, 0.95)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    color: #3b4a6b !important;
}

/* Links */
.story-link {
    color: #3b4a6b;
    text-decoration: underline;
    font-weight: 500;
}

.story-link:hover {
    color: #2c3a5b;
}

/* Hero section mobile optimization */
.hero-content {
    margin-top: 60px;
    padding: 0 20px;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
} 