/* Override main CSS to enable scrolling */
html, body {
    overflow: auto !important;
    height: auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
    position: static !important;
}

html {
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Navigation override to ensure transparent background */
.vh-nav-overlay {
    background: transparent !important;
    background-color: transparent !important;
}

/* Force override any conflicting styles */
body .vh-nav-overlay,
html .vh-nav-overlay {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Most specific override to force transparent background */
body .vh-nav-overlay,
html .vh-nav-overlay,
.vh-nav-overlay {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

/* Hero Section */
.hero-cover {
    position: relative;
    min-height: 534px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px;
    border-radius: 0px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #69929e 0%, #5a7a85 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #69929e;
    opacity: 0.4;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 32px;
    font-style: normal;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 300;
    font-style: normal;
    color: white;
    margin-bottom: 0px;
    font-style: italic;
}

/* Section Containers */
.section-container {
    padding: 60px 50px 30px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Columns Layout */
.columns {
    display: flex;
    gap: 50px;
    margin-bottom: 0px;
    align-items: flex-start;
    min-height: 500px;
}

.column {
    flex: 1;
}

/* Story Section */
.story-content {
    transform: translateY(-30px);
}

.story-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 15px;
    font-style: normal;
}

.story-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
    text-align: left;
}

.story-link {
    color: #3b4a6b;
    font-weight: 600;
    text-decoration: none;
}

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

/* CTA Button */
.cta-button-container {
    margin-top: 20px;
    text-align: left;
}

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

.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;
}

/* Why Book Section */
.why-book-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 15px;
    font-style: normal;
}

.why-book-content h3 {
    margin-bottom: 15px !important;
}

/* Ensure Why Book section columns align properly */
.section-container:nth-of-type(2) .columns {
    align-items: flex-start;
}

.section-container:nth-of-type(2) .story-image {
    margin-top: 0;
}

.why-book-text {
    margin-bottom: 15px !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-family: 'Montserrat', sans-serif;
    color: #555;
    text-align: left;
}

.why-book-text:last-child {
    margin-bottom: 0px !important;
}

/* Values Section */
.values-section {
    background-color: #f8f9fa;
    padding: 60px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.values-title {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: #2c3e50;
    font-style: normal;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    align-self: stretch;
    display: flex;
}

.value-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 40px 50px 40px !important;
    flex: 1;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.value-card-inner h3 {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    flex-shrink: 0;
    min-height: 64px;
    display: flex;
    align-items: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2c3e50;
    text-align: center;
    font-style: normal;
}

.value-card-inner p {
    flex: 1;
    margin-bottom: 0 !important;
    display: flex;
    align-items: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    color: #666666;
    text-align: center;
    font-style: normal;
}

/* Social Section */
.social-section {
    padding: 60px 50px 30px 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.social-section .section-title {
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: #2c3e50;
    font-style: normal;
}

.social-text {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.social-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link i {
    font-size: 16px;
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #3498db;
    position: relative;
    overflow: hidden;
}

.image-placeholder:before {
    content: "📷";
    font-size: 48px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.3;
}

.placeholder-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 500;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .columns {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        gap: 40px;
    }

    .story-content {
        transform: none;
    }
    


    .story-title {
        font-size: 2.5rem !important;
        text-align: center !important;
    }

    .story-text {
        text-align: center !important;
    }

    .cta-button {
        text-align: center;
    }

    .value-card-inner {
        height: auto;
        min-height: 300px;
        padding: 50px 30px 40px 30px !important;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .section-container {
        padding: 50px 30px 30px 30px;
    }

    .values-section {
        padding: 50px 30px;
    }

    .social-section {
        padding: 50px 30px 30px 30px;
    }
}

/* Footer uses homepage styles from style.css */ 