/* Using style.css variables */
:root {
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset */
body {
    background-color: var(--primary-dark);
    color: var(--white);
    font-family: 'Montserrat';
    margin: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HERO SECTION */
.hero-ex {
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: white;
    position: relative;
    text-align: center;
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.tilted-label {
    background-color: black;
    color: white;
    padding: 5px 20px;
    font-weight: 800;
    font-size: 1.2rem;
    transform: rotate(-10deg);
    position: absolute;
    top: -30px;
    left: 42%;
    z-index: 2;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.main-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow:
        -4px -4px 0 #282828,
        4px -4px 0 #282828,
        -4px 4px 0 #282828,
        4px 4px 0 #282828,
        10px 10px 0 #282828;
    paint-order: stroke fill;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 5px auto;
    line-height: 1.6;
    font-weight: 700;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 8px 30px;
    width: fit-content;
}

.thai-subtitle {
    font-family: 'FC Vision', sans-serif;
    font-size: 1.5rem;
}

/* WHAT IS OVERCOOKED SECTION */
.what-is-section {
    padding: 120px 0;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 80px;
}

.sub-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.title-with-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.large-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 15px;
}

.ex-tag {
    background-color: var(--primary-red);
    color: white;
    padding: 6px 30px;
    font-weight: 800;
    font-size: 1rem;
    transform: skewX(-15deg);
}

.ex-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.square-poster {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    box-shadow: 15px 15px 0 var(--primary-red);
}

.ex-text-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block h3 {
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

.details-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-weight: 500;
}

.details-list i {
    color: var(--primary-red);
    width: 20px;
    text-align: center;
}

/* OUR VALUE SECTION */
.our-value-section {
    background-color: var(--primary-red);
    padding: 100px 0;
}

.section-main-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-img {
    max-width: 100%;
    max-height: 100%;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* BRAND STORY SECTION */
.brand-story-section {
    padding: 120px 0;
}

.brand-intro-row {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.brand-3d-logo {
    width: 100%;
    height: 400px;
    background-color: transparent;
    --poster-color: transparent;
}

.brand-large-logo {
    width: 100%;
}

.brand-desc-col p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.section-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin: 80px 0 60px;
    display: flex;
    justify-content: center;
}

.divider-text {
    position: absolute;
    top: -20px;
    background: var(--primary-dark);
    padding: 0 30px;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: capitalize;
}

.video-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-box {
    width: 100%;
    aspect-ratio: 16/9;
    background: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.play-trigger {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.video-box:hover .play-trigger {
    color: var(--primary-red);
    transform: scale(1.1);
}

.video-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-block h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.story-block p {
    color: #ccc;
    line-height: 1.6;
}

/* OUR GOALS SECTION */
.our-goals-section {
    padding: 0 0 120px;
}

.goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
}

.goal-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.goal-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 0.8;
}

.goal-item p {
    color: var(--white);
    line-height: 1.5;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Animation utilities derived from index.css */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    .ex-content-grid,
    .video-content-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .ex-content-grid,
    .values-grid,
    .brand-intro-row,
    .video-content-grid,
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-intro-row {
        text-align: center;
    }

    .brand-logo-col {
        max-width: 100%;
        margin: 0 auto;
    }

    .brand-3d-logo {
        height: 250px;
    }

    .large-title {
        font-size: 3rem;
    }

    .section-main-title {
        font-size: 2.5rem;
    }

    .divider-text {
        font-size: 1.8rem;
    }

    .goal-number {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 6px 15px;
        width: auto;
        max-width: 90%;
    }

    .thai-subtitle {
        font-size: 1.1rem;
    }
}