/*
 * Styles for the About Us Page
 * Path: /css/about.css
 */

/* Hero Section */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--black-background);
}

.about-hero-content h1 {
    font-size: 4.5rem;
    color: var(--gold-color);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.about-hero-content p {
    font-size: 1.5rem;
    font-family: var(--secondary-font);
    color: rgba(255, 255, 255, 0.9);
}

/* General Section Styling */
.about-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 50px;
}

/* Rebranding Section */
.rebrand-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.rebrand-text h2 {
    font-family: var(--primary-font);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.rebrand-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.rebrand-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.detail-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.detail-info {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}
.detail-info a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.detail-info a:hover {
    color: #fff;
}

/* Weekend Events Section */
.events-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.events-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.events-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.media-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-placeholder {
    grid-column: 1 / -1; /* Span full width */
    aspect-ratio: 16 / 9;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    background: rgba(0,0,0,0.5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 80px;
    padding-left: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 215, 0, 0.8);
    color: var(--black-background);
}


/* Location and Socials Section */
.location-socials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* New styles for the iframe container */
.gmap-iframe-container {
    position: relative;
    padding-bottom: 75%; /* 4:3 Aspect Ratio (450 / 600 = 0.75) */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gmap-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Remove old gmap-container styling */
/* #gmap-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
} */

.socials-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.social-icon svg {
    width: 60px;
    height: 60px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    color: var(--gold-color);
    transform: scale(1.1) translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .events-showcase, .location-socials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }
    .about-hero-content p {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}
