/* CSS Variables */
:root {
    --charcoal: #2F3E46;
    --vermilion: #D2001F;
    --indigo: #4169E1;
    --light-gray: #F5F7FA;
    --medium-gray: #8B9DAF;
    --white: #FFFFFF;
    --black: #1A1D21;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    border-bottom: 1px solid #E5E9ED;
    padding: 20px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
}

/* Hero Section */
.hero {
    background-color: var(--white);
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--vermilion);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 50px;
}

section {
    padding: 80px 0;
    text-align: center;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Climbing Section */
.climbing {
    background-color: var(--light-gray);
}

.climbing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.climbing-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.climbing-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.climbing-card p {
    color: var(--medium-gray);
    font-size: 14px;
}

/* Skydiving Section */
.skydiving {
    background-color: var(--white);
}

.skydiving-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.skydiving-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.skydiving-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skydiving-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.skydiving-text p {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.skydiving-text ul {
    list-style: none;
    padding-left: 0;
}

.skydiving-text li {
    color: var(--medium-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.skydiving-text li::before {
    content: "•";
    color: var(--vermilion);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Activity Finder */
.activity-finder {
    background-color: var(--light-gray);
}

.finder-content p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.search-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.activity-type {
    background-color: var(--white);
    color: var(--charcoal);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Gear Reviews */
.gear-reviews {
    background-color: var(--white);
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gear-card {
    background-color: var(--light-gray);
    border-radius: 12px;
    padding: 24px;
}

.gear-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gear-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gear-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.gear-card p {
    color: var(--medium-gray);
    font-size: 14px;
}

/* Training Section */
.training {
    background-color: var(--light-gray);
}

.training-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.training-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.training-text > p {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.training-features {
    display: grid;
    gap: 20px;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.feature p {
    font-size: 14px;
    color: var(--medium-gray);
}

.training-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Products Section */
.products {
    background-color: var(--white);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--light-gray);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.product-card p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 16px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: var(--vermilion);
    margin-bottom: 20px;
}

.cta-button {
    background-color: var(--vermilion);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #B8001A;
}

.cta-button.secondary {
    background-color: var(--indigo);
}

.cta-button.secondary:hover {
    background-color: #3557CC;
}

.cta-button.premium {
    background-color: var(--charcoal);
}

.cta-button.premium:hover {
    background-color: #253238;
}

.cta-button.custom {
    background-color: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.cta-button.custom:hover {
    background-color: var(--charcoal);
    color: var(--white);
}

/* Contacts */
.contacts {
    background-color: var(--light-gray);
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    color: var(--medium-gray);
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand {
    font-weight: 600;
    font-size: 18px;
}

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section li:not(:has(a)) {
    color: var(--medium-gray);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #3D4C54;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--medium-gray);
    margin: 0;
}

/* Legacy footer styles for compatibility */
.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--vermilion);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: var(--medium-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close:hover {
    color: var(--charcoal);
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.modal-content form {
    display: grid;
    gap: 16px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    padding: 12px;
    border: 1px solid #E5E9ED;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
}

.modal-content button {
    background-color: var(--vermilion);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}

.modal-content button:hover {
    background-color: #B8001A;
}

/* Placeholder Styles */
.placeholder-text {
    font-size: 16px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-content,
    .skydiving-content,
    .training-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .activity-types {
        gap: 12px;
    }
    
    .activity-type {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
    
    .footer-nav {
        gap: 20px;
    }
}