*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#fff;
}

/* NAVBAR */
.top{
    display:flex;
    align-items:center;
    padding:10px 30px;
    background:#d50202;
    position:sticky;
    top:0;
    z-index:1000;
}

.top a{
    color:white;
    margin-left:25px;
    text-decoration:none;
    font-weight:500;
}

.top a:hover{
    text-decoration:underline;
}

#lg{
    width:60px;
}

#search{
    margin-left:auto;
    padding:7px 15px;
    border-radius:20px;
    border:none;
}

/* HERO */
.hero{
    position:relative;
    height:90vh;
}

.hero-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:white;
    text-align:center;
    background:rgba(0,0,0,0.5);
    padding:30px;
    border-radius:15px;
}

.hero-text button{
    margin-top:20px;
    padding:10px 25px;
    border:none;
    background:#d50202;
    color:white;
    font-size:16px;
    cursor:pointer;
    border-radius:20px;
}

/* SOCIAL BREAK */
.socialbreak{
    background:#dc0101;
    padding:40px;
    color:white;
    text-align:center;
}

.gallery{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin-top:30px;
}

.gallery img{
    width:280px;
    height:220px;
    border-radius:20px;
    transition:0.4s;
}

.gallery img:hover{
    transform:scale(1.1);
    box-shadow:0 10px 25px rgba(0,0,0,0.5);
}

/* FOOTER */
footer{
    background:black;
    color:white;
    text-align:center;
    padding:20px;
}

/* SCROLL TOP */
#topBtn{
    position:fixed;
    bottom:30px;
    right:30px;
    padding:10px 15px;
    border:none;
    background:#d50202;
    color:white;
    border-radius:50%;
    cursor:pointer;
}
.video-section {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

.video-section h2 {
  color: #d90429;
  margin-bottom: 15px;
}

.video-section iframe {
  width: 100%;
  max-width: 560px;
  margin: 15px 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
