* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background-color: #fcfcfc; 
}
.container { width: 90%; max-width: 1200px; margin: auto; }

/* Grey Hero Section */
.hero {
    background-color: #333; /* Dark Grey replaces background image */
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
.hero h1 { font-size: 2.8rem; letter-spacing: 4px; margin-bottom: 10px; }
.hero .subtitle { font-size: 1.1rem; color: #aaa; text-transform: uppercase; }

.section { padding: 60px 0; }
h2 { font-size: 2rem; margin-bottom: 30px; border-bottom: 3px solid #333; display: inline-block; }

/* Reels Card Layout */
.reels-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.card { background: #eee; padding: 40px; text-align: center; border-radius: 4px; }

@media (min-width: 768px) {
    .reels-grid { grid-template-columns: repeat(4, 1fr); }
    .hero h1 { font-size: 4.5rem; }
}

footer { background: #111; color: #666; text-align: center; padding: 40px 0; margin-top: 40px; }


/* --- Gallery Grid --- */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns on desktop */
    gap: 16px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================
   RESPONSIVE VIDEO / IFRAME
   ========================= */

.experience video,
.experience iframe {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    display: block;
}

/* Optional: maintain 16:9 aspect ratio cleanly */
.experience iframe {
    aspect-ratio: 16 / 9;
}

/* Remove fixed sizing from containers */
.content-details p {
    margin: 0;
}

/* Prevent overflow issues */
.experience {
    overflow-x: hidden;
}

/* =========================
   EXPERIENCE: GRID LAYOUT FIX
   ========================= */

.experience-wrapper {
    display: grid;
    grid-template-columns: 1fr; /* default: mobile first */
    gap: 30px;
}

/* Desktop: force two columns */
@media (min-width: 768px) {
    .experience-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Remove any inherited column behavior */
.experience-wrapper > div {
    width: 100%;
}

/* ============================= */
/* EXPERIENCE RESPONSIVE GRID */
/* ============================= */

.experience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.experience-column {
    flex: 1 1 100%;
}

/* Desktop: 2 columns */
@media (min-width: 768px) {
    .experience-column {
        flex: 1 1 48%;
    }
}

/* ============================= */
/* RESPONSIVE VIDEO */
/* ============================= */

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    overflow: hidden;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Prevent overflow everywhere */
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Safety: prevent page horizontal scroll */
body {
    overflow-x: hidden;
}

/* ============================= */
/* VIDEO SEPARATORS */
/* ============================= */

.content-details {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

/* Remove divider from last item in each column */
.experience-column .content-details:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}