/* Desktop CSS for About Page (1200px+) */

/* Base styles */
.section-container {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-content {
    padding: 0 40px;
}

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

.column {
    flex: 1;
}

/* Our Story Section - Desktop Layout */
.section-container:first-of-type .columns {
    display: flex;
    gap: 60px;
}

.section-container:first-of-type .story-content {
    flex: 1;
    padding-right: 30px;
    margin-top: 40px;
}

.section-container:first-of-type .story-image {
    flex: 1;
}

.section-container:first-of-type .cta-button-container {
    margin-top: 30px;
    text-align: left;
}

/* Why Book Section - Desktop Layout */
.section-container:nth-of-type(2) .columns {
    display: flex;
    gap: 60px;
}

.section-container:nth-of-type(2) .story-image {
    flex: 1;
}

.section-container:nth-of-type(2) .why-book-content {
    flex: 1;
    padding-left: 30px;
}

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

.story-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

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

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

/* Images */
.story-image img {
    width: 100%;
    height: 450px;
    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: 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;
}

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

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