/* OSU Golf Club - Page Components */

/* General Layout */
.page-container {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
    padding-top: 90px;
}

.section {
    margin-bottom: 60px;
}

.section-application {
    padding: 0 50px;
}

.section-application h3 {
    margin-bottom: 15px;
}

.section-application p {
    margin-bottom: 10px;
}

.section-application li {
    margin-bottom: 5px;
}
    

/* Page Header with Background Image */
.page-header {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.page-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: white;
}

.page-header-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header-content p {
    font-size: 1.1rem;
    max-width: 600px;
}

/* Content Card */
.content-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.card-header {
    background: linear-gradient(135deg, #bb0000, #990000);
    color: white;
    padding: 20px 30px;
}

.card-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin: 0;
}

.card-body {
    padding: 30px;
}

.card-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.card-body p:last-child {
    margin-bottom: 0;
}

/* Two Column Layout */
.two-column {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.column {
    flex: 1;
}

.column h4 {
    margin-bottom: 3px;
}
.column p {
    margin-bottom: 15px;
}


/* Left column with list */
.benefits-list {
    padding-left: 20px;
}

.benefits-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.benefits-list li::before {
    content: "•";
    color: #bb0000;
    font-size: 1.2rem;
    position: absolute;
    left: -15px;
    top: -2px;
}

/* Right column with image */
.feature-image-container {
    height: 200px; /* Adjust height as needed */
    min-height: 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section with gradient background */
.highlight-section {
    background: linear-gradient(135deg, #f9f2f2, #fff);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.highlight-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: #bb0000;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Image Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, #bb0000, #990000);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin: 40px 0;
}

.cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: #bb0000;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f9f2f2;
    transform: translateY(-2px);
}

/* Section divider */
.divider {
    height: 3px;
    background: linear-gradient(to right, transparent, #bb0000, transparent);
    margin: 40px 0;
    opacity: 0.3;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .two-column {
        flex-direction: column;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-header {
        height: 300px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .card-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-image-container {
        min-height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        height: 250px;
    }
    
    .page-header-content h1 {
        font-size: 1.8rem;
    }
    
    .highlight-section {
        padding: 25px;
    }
}