/* Homepage Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #2a2a2a 100%);
    color: #FFD700;
    padding: 70px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    color: #FFF;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Container */
.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Welcome Section */
.welcome-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: center;
    background-color: #1a1a1a;
    border: 2px solid #333;
    padding: 40px;
    margin-bottom: 50px;
}

.welcome-logo img {
    width: 100%;
    max-width: 200px;
}

.welcome-content h2 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 15px;
}

.welcome-content p {
    color: #b0b0b0;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Intro Section */
.intro-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.intro-section p {
    font-size: 19px;
    line-height: 1.8;
    color: #c0c0c0;
    max-width: 800px;
    margin: 0 auto;
}

/* Featured Section */
.featured-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: #1a1a1a;
    border: 2px solid #333;
    margin-bottom: 50px;
    overflow: hidden;
}

.featured-image {
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: transform 0.3s;
}

.featured-image:hover img {
    transform: scale(1.03);
}

.featured-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-label {
    color: #FFD700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.featured-content h2 {
    margin-bottom: 20px;
}

.featured-content h2 a {
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    transition: color 0.3s;
}

.featured-content h2 a:hover {
    color: #FFD700;
}

.featured-content p {
    color: #b0b0b0;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.read-more {
    color: #FFD700;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.read-more:hover {
    color: #fff;
}

.read-more::after {
    content: ' \2192';
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: #1a1a1a;
    border: 2px solid #333;
    margin-bottom: 50px;
    overflow: hidden;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: transform 0.3s;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-label {
    color: #FFD700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content h2 a {
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    transition: color 0.3s;
}

.about-content h2 a:hover {
    color: #FFD700;
}

.about-content p {
    color: #b0b0b0;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 60px;
    text-align: center;
    border: 3px solid #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.cta-section h3 {
    color: #FFD700;
    font-size: 38px;
    margin-bottom: 25px;
}

.cta-section p {
    color: #e0e0e0;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #FFD700;
    color: #000;
    padding: 20px 60px;
    font-size: 22px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 17px;
    }

    .welcome-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }

    .welcome-logo img {
        max-width: 150px;
        margin: 0 auto;
    }

    .welcome-content h2 {
        font-size: 24px;
    }

    .welcome-content p {
        font-size: 16px;
    }

    .intro-section p {
        font-size: 17px;
    }

    .featured-section {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .featured-image img {
        min-height: 250px;
    }

    .featured-content {
        padding: 30px;
    }

    .featured-content h2 a {
        font-size: 26px;
    }

    .featured-content p {
        font-size: 16px;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-image img {
        min-height: 250px;
    }

    .about-content {
        padding: 30px;
    }

    .about-content h2 a {
        font-size: 26px;
    }

    .about-content p {
        font-size: 16px;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .cta-section h3 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 16px;
    }
}
