/* =========================================
   SANCTUS GOLF
   Premium Mobile Landing Page
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Inter,sans-serif;

    background:#0f1115;

    color:white;

    overflow-x:hidden;

}

/* NAVIGATION */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    background:transparent;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;

    transition:background .3s ease, backdrop-filter .3s ease;
}

header.scrolled{
    background:rgba(15,17,21,.75);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
}

header.show{
    transform:translateY(0);
}
nav{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

}

.logo{

    width:160px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:40px;

}

nav ul a{

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

nav ul a:hover{

    color:#d4b15a;

}

.hamburger{

    display:none;

    flex-direction:column;

    gap:5px;

    cursor:pointer;

}

.hamburger span{

    width:28px;

    height:3px;

    background:white;

    border-radius:20px;

}

/* HERO */

.hero{
    position:relative;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding:0 24px;
}

.hero-image{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to bottom,
    rgba(0,0,0,.25),
    rgba(0,0,0,.70));

}

.hero-content{
    position:relative;
    z-index:10;
    max-width:600px;
    text-align:left;
}

.hero-content p{
    letter-spacing:3px;
    text-transform:uppercase;
    color:#d4b15a;
    margin-bottom:20px;
    text-align:left;
}

.hero-content h1{
    font-family:"Cormorant Garamond", serif;
    font-size:78px;
    line-height:1;
    margin-bottom:35px;
    text-align:left;
}

.hero-content a{
    display:inline-block;
    padding:18px 42px;
    background:#d4b15a;
    color:#0f1115;

    text-decoration:none;   /* Removes underline */
    font-weight:700;
    border-radius:50px;

    transition:.35s;
}

.hero-content a:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(212,177,90,.35);

}

/* SECTION */

section{

    padding:110px 25px;

}

section h2{

    text-align:center;

    font-family:"Cormorant Garamond",serif;

    font-size:52px;

    margin-bottom:60px;

}

/* CARDS */

.cards{

    display:grid;

    gap:35px;

    max-width:1200px;

    margin:auto;

    grid-template-columns:repeat(3,1fr);

}

.card{

    background:#171a1f;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

}

.card:hover{

    transform:translateY(-12px);

}

.card img{

    width:100%;

    height:300px;

    object-fit:cover;

}

.card h3{

    padding:30px;

    text-align:center;

    font-size:24px;

}

/* MISSION */

#mission{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.mission-image img{

    width:100%;

    border-radius:22px;

}

.mission-text h2{

    text-align:left;

}

.mission-text p{

    color:#bdbdbd;

    line-height:1.9;

    font-size:18px;

}

/* MOBILE */

@media (max-width:900px){

    nav{
        position:relative;
    }

    .hamburger{
        display:flex;
        cursor:pointer;
        z-index:1001;
    }

    nav ul{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#0f1115;
        flex-direction:column;
        align-items:center;
        gap:25px;
        padding:30px 0;
    }

    nav ul.active{
        display:flex;
    }

    .hero-content h1{
        font-size:52px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    #mission{
        grid-template-columns:1fr;
    }

    .logo{
        width:140px;
    }

    section h2{
        font-size:40px;
    }

}

/* ==========================
   Daily Verse
========================== */

.daily-verse{
    background:#12161d;
    padding:90px 20px;
}

.verse-container{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.verse-label{
    color:#D8B86B;
    letter-spacing:3px;
    font-size:13px;
    margin-bottom:25px;
}

#verse-text{
    font-family:"Cormorant Garamond", serif;
    font-size:42px;
    line-height:1.5;
    color:white;
    margin-bottom:20px;
}

#verse-reference{
    color:#A9AFB8;
    font-size:20px;
    margin-bottom:45px;
}

.golf-devotional{
    background:#181C22;
    border-radius:0;
    padding:35px;
    border:1px solid rgba(255,255,255,.08);
}

.golf-devotional h3{
    color:#D8B86B;
    margin-bottom:15px;
}

#golf-thought{
    color:#d7d7d7;
    line-height:1.8;
    font-size:18px;
}
/* ==========================
   Focus • Train • Elevate
========================== */

.pillars{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    align-items:center;
    text-align:center;
    background:#11151b;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.pillar{
    padding:40px 20px;
}

.pillar:not(:last-child){
    border-right:1px solid rgba(255,255,255,.08);
}

.pillar img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:18px;
}

.pillar h3{
    color:#fff;
    font-size:28px;
    margin-bottom:10px;
    font-family:"Cormorant Garamond", serif;
}

.pillar p{
    color:#b8b8b8;
    font-size:16px;
}

/* Mobile */

@media (max-width:900px){

.pillars{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#11151b;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.pillar{
    flex:1;
    text-align:center;
    padding:40px 20px;
}

.pillar:not(:last-child){
    border-right:1px solid rgba(255,255,255,.08);
}

.pillar img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:18px;
}

.pillar h3{
    font-family:"Cormorant Garamond", serif;
    font-size:28px;
    margin-bottom:10px;
    color:#fff;
}

.pillar p{
    color:#bdbdbd;
    font-size:16px;
}
/* Password Screen */

#password-screen{
    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:999999;
    padding:30px;
}

#password-screen h1{
    font-family:'Oswald', sans-serif;
    font-size:56px;
    font-weight:700;
    letter-spacing:10px;
    color:#fff;
    margin-bottom:60px;
    text-transform:uppercase;
}

#password-input{
    width:min(620px,90%);
    height:72px;
    border:none;
    background:#d8d8d8;
    padding:0 24px;
    font-size:30px;
    font-weight:600;
    color:#111;
    margin-bottom:35px;
    outline:none;
}

#password-input::placeholder{
    color:#ffffff;
    font-weight:700;
}

#enter-btn{
    width:min(620px,90%);
    height:72px;
    border:none;
    background:#fff;
    color:#111;
    font-family:'Oswald', sans-serif;
    font-size:24px;
    font-weight:700;
    letter-spacing:2px;
    cursor:pointer;
    transition:.25s;
}

#enter-btn:hover{
    background:#d4b15a;
}

#password-error{
    color:#d9534f;
    margin-top:25px;
    font-size:18px;
}
