/* ===========================
   GOOGLE FONT
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f9fa;
    color:#333;
    line-height:1.6;
}

/* ===========================
   CONTAINER
=========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   HEADINGS
=========================== */

h1{
    font-size:60px;
    font-weight:700;
}

h2{
    font-size:38px;
    margin-bottom:20px;
}

h3{
    font-size:24px;
    margin-bottom:10px;
}

p{
    font-size:17px;
    color:#555;
}

/* ===========================
   BUTTONS
=========================== */

.btn{

    display:inline-block;
    margin-top:25px;
    background:#ff9800;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:5px;
    transition:.3s;

}

.btn:hover{

    background:#e68900;
    transform:translateY(-3px);

}

.btn2{

    display:inline-block;
    margin-top:25px;
    color:#ff9800;
    border:2px solid #ff9800;
    text-decoration:none;
    padding:14px 35px;
    border-radius:5px;
    transition:.3s;

}

.btn2:hover{

    background:#ff9800;
    color:white;

}

/* ===========================
   HERO
=========================== */

.hero{

    background:url("../images/hero.jpg");
    background-size:cover;
    background-position:center;
    height:100vh;
    position:relative;

}

.overlay{

    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.60);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;

}

.overlay p{

    color:white;
    font-size:22px;

}

/* ===========================
   ABOUT
=========================== */

.about-preview{

    padding:100px 0;
    text-align:center;
    background:white;

}

/* ===========================
   EVENTS
=========================== */

.home-events{

    padding:100px 0;
    background:#f4f4f4;
    text-align:center;

}

.event-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;

}

.event-card{

    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    transition:.3s;

}

.event-card:hover{

    transform:translateY(-10px);

}

.event-card img{

    width:100%;
    height:250px;
    object-fit:cover;

}

.event-card h3{

    padding:15px;

}

.event-card p{

    padding:0 15px 20px;

}

/* ===========================
   GALLERY
=========================== */

.gallery-preview{

    padding:100px 0;
    text-align:center;
    background:white;

}

.gallery-grid{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.gallery-grid img{

    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
    transition:.4s;
    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

/* ===========================
   CTA
=========================== */

.cta{

    background:#111;
    color:white;
    padding:90px 20px;
    text-align:center;

}

.cta p{

    color:#ddd;

}

/* ===========================
   PAGE BANNER
=========================== */

.page-banner{

    height:350px;
    display:flex;
    justify-content:center;
    align-items:center;

    background:#111;

    color:white;

}

/* ===========================
   SECTION SPACING
=========================== */

section{

    overflow:hidden;

}

/* ===========================
   CARDS
=========================== */

.card{

    background:white;

    border-radius:10px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    padding:25px;

}

/* ===========================
   LINKS
=========================== */

a{

    transition:.3s;

}

/* ===========================
   IMAGES
=========================== */

img{

    max-width:100%;

}

/* ===========================
   UTILITIES
=========================== */

.text-center{

    text-align:center;

}

.mt-50{

    margin-top:50px;

}

.mb-50{

    margin-bottom:50px;

}