@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
    --green:#14382F;
    --green-dark:#0C2722;
    --gold:#C6A15B;
    --beige:#F6F1E8;
    --cream:#FFFDF8;
    --soft:#F1E7D7;
    --muted:#74695C;
    --text:#1F2F2B;
    --border:rgba(198,161,91,.25);
    --shadow:0 18px 45px rgba(20,56,47,.08);
    --shadow-hover:0 26px 65px rgba(20,56,47,.14);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Inter",sans-serif;
    background:var(--beige);
    color:var(--text);
    overflow-x:hidden;
}

.webinar-hero{
    min-height:70vh;
    padding:150px 20px 85px;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at 15% 20%,rgba(198,161,91,.18),transparent 30%),
        linear-gradient(135deg,var(--cream),var(--beige));
}

.gold-label{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    font-weight:800;
    margin-bottom:16px;
    display:inline-block;
}

.webinar-hero h1,
.section-heading h2,
.program-card h3,
.collab-card h2{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
}

.webinar-hero h1{
    font-size:clamp(54px,7vw,104px);
    line-height:.95;
    margin-bottom:24px;
}

.webinar-hero p{
    max-width:820px;
    margin:auto;
    color:var(--muted);
    font-size:20px;
    line-height:1.8;
}

.section-padding{
    padding:85px 20px;
    background:var(--beige);
}

.highlights-section{
    background:
        radial-gradient(circle at 85% 18%,rgba(198,161,91,.12),transparent 26%),
        var(--soft);
}

.collab-section{
    background:var(--beige);
}

.section-heading{
    max-width:850px;
    margin:0 auto 48px;
}

.section-heading h2{
    font-size:clamp(42px,5vw,68px);
    margin-top:12px;
}

.section-heading p{
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
}

.program-card{
    height:100%;
    padding:32px;
    background:white;
    border:1px solid var(--border);
    border-radius:28px;
    box-shadow:var(--shadow);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    overflow:hidden;
}

.program-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.program-card > i{
    width:68px;
    height:68px;
    border-radius:22px;
    background:var(--soft);
    display:grid;
    place-items:center;
    font-size:34px;
    color:var(--gold);
    margin-bottom:18px;
}

.program-card h3{
    font-size:34px;
    margin:0 0 14px;
    line-height:1.08;
}

.program-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:0;
}

.highlight-card{
    position:relative;
    padding:22px;
    min-height:520px;
}

.highlight-card .event-thumb{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:22px;
    margin-bottom:22px;
    border:1px solid var(--border);
}

.highlight-badge{
    position:absolute;
    top:34px;
    right:34px;
    background:var(--green);
    color:white;
    padding:8px 15px;
    border-radius:30px;
    font-size:12px;
    font-weight:900;
    letter-spacing:1px;
    box-shadow:0 12px 25px rgba(20,56,47,.18);
}

.highlight-icon{
    width:86px;
    height:86px;
    border-radius:50%;
    background:var(--beige);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:12px auto 24px;
    border:1px solid var(--border);
}

.highlight-icon i{
    font-size:42px;
    color:var(--gold);
}

.highlight-card h3{
    font-size:34px;
    line-height:1.12;
    margin:0 0 14px;
    min-height:76px;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow-wrap:anywhere;
}

.highlight-card p{
    color:var(--muted);
    line-height:1.75;
    margin-bottom:24px;
    flex:1;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow-wrap:anywhere;
    word-break:break-word;
}

.btn-luxury{
    min-width:170px;
    height:52px;
    padding:0 24px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:var(--green);
    color:white;
    border:1px solid var(--green);
    text-decoration:none;
    font-weight:800;
    transition:.3s ease;
    margin-top:auto;
    align-self:flex-start;
}

.btn-luxury:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--green-dark);
    transform:translateY(-4px);
}

.btn-outline-luxury{
    min-width:150px;
    height:56px;
    padding:0 24px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    color:var(--green);
    border:1px solid var(--green);
    text-decoration:none;
    font-weight:800;
    transition:.3s ease;
}

.btn-outline-luxury:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--green-dark);
    transform:translateY(-4px);
}

.collab-card{
    max-width:980px;
    margin:auto;
    padding:64px 45px;
    border-radius:34px;
    background:
        radial-gradient(circle at 20% 10%,rgba(198,161,91,.18),transparent 30%),
        var(--green);
    color:white;
    box-shadow:0 20px 55px rgba(20,56,47,.12);
}

.collab-card h2{
    color:white;
    font-size:clamp(46px,6vw,76px);
}

.collab-card p{
    max-width:780px;
    margin:22px auto 35px;
    color:#E8DCC8;
    font-size:18px;
    line-height:1.8;
}

.event-meta-detail{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:32px;
}

.event-meta-detail span{
    padding:11px 20px;
    border:1px solid var(--border);
    border-radius:50px;
    background:white;
    color:var(--green);
}

.event-meta-detail i{
    color:var(--gold);
    margin-right:6px;
}

.event-image-box{
    border-radius:34px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.event-image-box img{
    width:100%;
    max-height:520px;
    object-fit:cover;
}

.event-detail-card{
    padding:45px;
    border-radius:30px;
    background:white;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.event-detail-card h2{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(42px,5vw,70px);
    color:var(--green);
    margin-bottom:20px;
}

.event-detail-card p{
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
}

.event-video{
    width:100%;
    border-radius:22px;
    margin-top:25px;
    border:1px solid var(--border);
}

.empty-event-card{
    max-width:760px;
    margin:auto;
    padding:50px;
    background:white;
    border:1px solid var(--border);
    border-radius:30px;
    box-shadow:var(--shadow);
}

.empty-event-card i{
    font-size:52px;
    color:var(--gold);
}

.empty-event-card h3{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:38px;
    margin:22px 0 16px;
}

.empty-event-card p{
    color:var(--muted);
    line-height:1.8;
}

@media(max-width:991px){
    .webinar-hero{
        min-height:auto;
        padding:135px 20px 75px;
    }

    .section-padding{
        padding:70px 20px;
    }

    .collab-card{
        padding:50px 30px;
    }

    .highlight-card{
        min-height:500px;
    }
}

@media(max-width:576px){
    .webinar-hero h1{
        font-size:52px;
    }

    .webinar-hero p{
        font-size:17px;
    }

    .program-card,
    .empty-event-card,
    .collab-card,
    .event-detail-card{
        padding:26px 20px;
    }

    .highlight-card{
        min-height:auto;
    }

    .highlight-card .event-thumb{
        height:165px;
    }

    .highlight-card h3{
        min-height:auto;
        font-size:30px;
    }

    .btn-luxury,
    .btn-outline-luxury{
        width:100%;
    }
}
