/* Feature Pages Styles */

/* Hero Section */
.feature-hero {
    height: 40vh;
    position: relative;
    overflow: hidden;
}

.feature-hero-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.feature-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-hero-overlay h1 {
    color: white;
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Dancing Script', cursive;
}

/* Description Section */
.feature-description {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.description-container {
    max-width: 800px;
    margin: 0 auto;
}

.description-container h2 {
    color: rgb(137, 184, 220);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.description-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.key-performances {
    margin-top: 3rem;
}

.key-performances h3 {
    color: rgb(137, 184, 220);
    margin-bottom: 1.5rem;
}

.key-performances ul {
    list-style: none;
    padding: 0;
}

.key-performances li {
    margin-bottom: 2rem;
}

.key-performances strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #444;
}

/* Gallery Section */
.feature-gallery {
    padding: 4rem 2rem;
}

.feature-gallery h2 {
    text-align: center;
    color: rgb(137, 184, 220);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Video Section */
.feature-videos {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.feature-videos h2 {
    text-align: center;
    color: rgb(137, 184, 220);
    margin-bottom: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    cursor: pointer;
}

.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.play-button i {
    font-size: 24px;
    color: rgb(137, 184, 220);
}

.video-container:hover .play-button {
    background: white;
}

.video-item h3 {
    padding: 1rem;
    margin: 0;
    color: #333;
}

/* Awards Section */
.feature-awards {
    padding: 4rem 2rem;
}

.awards-container {
    max-width: 800px;
    margin: 0 auto;
}

.awards-container h2 {
    text-align: center;
    color: rgb(137, 184, 220);
    margin-bottom: 3rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.award-item i {
    font-size: 3rem;
    color: rgb(137, 184, 220);
    margin-bottom: 1rem;
}

.award-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.award-item p {
    color: #666;
}

/* Contact Section */
.feature-contact {
    padding: 4rem 2rem;
    background: rgb(137, 184, 220);
    color: white;
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-container h2 {
    margin-bottom: 1rem;
}

.contact-container p {
    margin-bottom: 2rem;
}

.feature-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: rgb(137, 184, 220);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-hero-overlay h1 {
        font-size: 3rem;
    }

    .description-container h2 {
        font-size: 2rem;
    }

    .gallery-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }
} 