/* ===============================
   ROOT VARIABLES
================================ */
:root{
    --white: #ffffff;
    --off-white: #f6f6f6;
    --dark-red: #6b0f0f;
    --text: #1a1a1a;
    --muted: #666;
    --border: rgba(0,0,0,0.08);
    --glass-bg: rgba(255,255,255,0.68);
    --gradient: linear-gradient(90deg,#ff9a2f,#ffd84d);
}

/* ===============================
   RESET
================================ */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body{
    width:100%;
    height:100%;
}

body{
    font-family: "Montserrat Alternates", sans-serif;
    background: radial-gradient(circle at top, #ffffff, #f1f1f1);
    color:var(--text);
    line-height:1.9;
    letter-spacing:0.4px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===============================
   HEADER
================================ */
header{
    position:sticky;
    top:0;
    z-index:1000;
    background:var(--gradient);
    padding:14px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.logo{
    font-size:16px;
    letter-spacing:1.5px;
    font-weight:500;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* HAMBURGER */
.hamburger{
    width:26px;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    gap:5px;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span{
    height:2px;
    width:100%;
    background:#111;
    border-radius:2px;
    transition: all 0.3s ease;
}

/* ===============================
   GATE SECTION
================================ */
section.gate{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:6px;
    flex: 1;
}

/* ===============================
   GLASS BOX
================================ */
.gate-box{
    width:100%;
    max-width:820px;
    padding:22px 28px;
    background:var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border:1px solid var(--border);
    border-radius:16px;
    text-align:center;

    box-shadow:
        0 18px 45px rgba(0,0,0,0.08),
        inset 0 0 0 1px rgba(255,255,255,0.6);

    animation:fadeUp 1.4s ease forwards;
}

/* ===============================
   GATE NUMBER
================================ */
.gate-number{
    font-size:11px;
    letter-spacing:4px;
    color:var(--muted);
    margin-bottom:12px;
    transition: color 0.3s ease;
}

/* ===============================
   HEADING
================================ */
h1{
    font-size:26px;
    font-weight:400;
    letter-spacing:2px;
    margin:14px 0;
    color:#111;
    transition: transform 0.3s ease;
}

h2 {
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0;
    color: #111;
    text-align: center;
}

/* ===============================
   DIVIDER
================================ */
.divider{
    height:2px;
    width:100%;
    background:linear-gradient(
        to right,
        transparent,
        var(--dark-red),
        transparent
    );
    margin:18px 0;
    transition: opacity 0.3s ease;
}

/* ===============================
   PARAGRAPHS
================================ */
p{
    font-size:16px;
    color:#333;
    margin:16px 0;
    text-align:center;
    transition: color 0.3s ease;
}

/* ===============================
   HIGHLIGHT PARAGRAPH
================================ */
p.highlight-box{
    margin:28px 0;
    padding-left:18px;
    border-left:3px solid var(--dark-red);
    font-size:16px;
    line-height:1.7;
    color:#222;
    text-align:left;
    transition: all 0.3s ease;
}

p.highlight-box:hover {
    padding-left: 22px;
    border-left-width: 4px;
}

/* ===============================
   LIST STYLING
================================ */
ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: center;
}

ul li {
    font-size: 16px;
    color: #333;
    margin: 12px 0;
    padding: 8px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 30px;
}

ul li::before {
    content: "•";
    color: var(--dark-red);
    font-size: 20px;
    position: absolute;
    left: 10px;
    transition: transform 0.3s ease;
}

ul li:hover {
    padding-left: 35px;
    color: #111;
}

ul li:hover::before {
    transform: scale(1.3);
}

/* ===============================
   BUTTON
================================ */
.btn-wrap{
    display:flex;
    justify-content:center;
    margin-top:36px;
}

button{
    padding:14px 38px;
    background:transparent;
    border:1px solid #333;
    color:#111;
    letter-spacing:2px;
    font-size:13px;
    cursor:pointer;
    transition:all 0.35s ease;
    border-radius: 4px;
    font-weight: 500;
}

button:hover{
    background:rgba(0,0,0,0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

button:active {
    transform: translateY(0);
}

/* ===============================
   FOOTER
================================ */
footer{
    background:var(--gradient);
    padding:16px;
    text-align:center;
    font-size:13px;
    margin-top: auto;
}

/* ===============================
   ANIMATION
================================ */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(22px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width:768px){
    section.gate {
        align-items: flex-start;
        padding-top: 20px;
        min-height: auto;
    }

    .gate-box{
        padding:16px 20px;
        border-radius:14px;
        margin-top: 0;
    }

    h1{
        font-size:22px;
        line-height:1.4;
        letter-spacing:1.2px;
    }

    h2 {
        font-size: 16px;
    }

    p,
    p.highlight-box{
        font-size:15.5px;
        line-height:1.8;
    }

    ul li {
        font-size: 15px;
    }

    button{
        width:100%;
        max-width:320px;
        padding:14px;
    }
}

@media (max-width:480px){
    section.gate {
        align-items: flex-start;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .gate-box {
        margin-top: 0;
    }

    h1{
        font-size:20px;
    }

    h2 {
        font-size: 15px;
    }

    .divider{
        margin:16px 0;
    }

    ul li {
        font-size: 14px;
        padding-left: 25px;
    }

    ul li::before {
        left: 5px;
    }
}