/* ================= GOOGLE FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ================= RESET ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Bebas Neue",sans-serif;
}

html{
scroll-behavior:smooth;
}

/* ================= VARIABLES ================= */
:root{
--white:#ffffff;
--dark:#1e1e1e;
--orange:#f31c1c;
--light-blue:#ADD8E6;
--max-width:1200px;
}

/* ================= BODY ================= */
body{
background:var(--light-blue);
}

a{
text-decoration:none;
}

img{
width:100%;
display:block;
}

/* ================= NAVBAR ================= */

header{
position:sticky;
top:0;
z-index:100;
background:rgba(255,255,255,0.95);
transition:0.3s;
}

.navbar{
max-width:var(--max-width);
margin:auto;
padding:10px 40px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

/* LOGO */

.nav-logo{
display:flex;
align-items:center;
gap:15px;
}

.logo{
height:90px;
width:auto;
object-fit:contain;
}

.logo-text{
font-size:2rem;
letter-spacing:2px;
color:var(--dark);
}

/* NAV MENU */

.nav-menu{
display:flex;
align-items:center;
gap:30px;
list-style:none;
flex-wrap:wrap;
}

.nav-link{
color:var(--dark);
padding:8px 18px;
border-radius:30px;
font-size:1.2rem;
transition:0.3s;
}

.nav-link:hover{
background:var(--orange);
color:var(--white);
}

/* ================= HERO SECTION ================= */

.hero-section{
position:relative;
height:100vh;
overflow:hidden;
}

.hero-image{
width:100%;
height:100vh;
object-fit:cover;
}

.hero-section::after{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
top:0;
left:0;
}

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:var(--white);
z-index:2;
max-width:800px;
padding:20px;
}

.hero-text h1{
font-size:3rem;
margin-bottom:10px;
}

.hero-text h3{
font-size:1.5rem;
margin-bottom:15px;
}

.hero-text p{
font-size:1rem;
line-height:1.6;
}

.hero-btn{
display:inline-flex;
align-items:center;
justify-content:center;
margin-top:20px;
padding:12px 30px;
background:var(--orange);
color:var(--white);
border-radius:30px;
transition:0.3s;
}

.hero-btn:hover{
background:#d67f0e;
transform:scale(1.05);
}

/* ================= ABOUT ================= */

.about-section{
padding:100px 20px;
background:var(--white);
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
max-width:var(--max-width);
margin:auto;
gap:50px;
flex-wrap:wrap;
}

.about-details{
flex:1;
}

.section-title{
font-size:2.5rem;
margin-bottom:20px;
color:var(--dark);
text-align:center;
}

.about-text{
font-size:1rem;
line-height:1.8;
margin-bottom:20px;
}

.about-image-wrapper{
flex:1;
display:flex;
justify-content:center;
}

.about-image{
width:300px;
height:300px;
object-fit:cover;
border-radius:50%;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* ================= GALLERY ================= */

.gallery-section{
padding:80px 20px;
background:#f5f5f5;
}

.gallery-section .section-title{
text-align:center;
margin-bottom:40px;
text-transform:uppercase;
letter-spacing:2px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:var(--max-width);
margin:auto;
}

.gallery-grid img{
height:250px;
object-fit:cover;
border-radius:10px;
transition:0.4s;
cursor:pointer;
}

.gallery-grid img:hover{
transform:scale(1.05);
box-shadow:0 10px 20px rgba(0,0,0,0.3);
border:2px solid var(--orange);
}

/* ================= CONTACT ================= */

.contact-section{
padding:100px 20px;
background:var(--white);
text-align:center;
}

.contact-text{
font-size:1.2rem;
margin-bottom:20px;
color:var(--dark);
}

/* ================= SOCIAL ICONS ================= */

.social-icons{
display:flex;
justify-content:center;
gap:25px;
margin-top:20px;
}

.social-icons a{
font-size:30px;
color:#333;
transition:0.3s;
}

.social-icons a:hover{
transform:scale(1.2);
}

.fa-facebook{
color:#1877F2;
}

.fa-instagram{
color:#E1306C;
}

/* ================= WHATSAPP BUTTON ================= */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:30px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:1000;
}

.whatsapp-float:hover{
background:#1ebe5d;
}

/* ================= FOOTER ================= */

.footer{
background:#111;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
font-size:14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width:900px){

.about-container{
flex-direction:column;
text-align:center;
}

.hero-text h1{
font-size:2rem;
}

.hero-text h3{
font-size:1.2rem;
}

}

/* MOBILE */

@media (max-width:600px){

.navbar{
flex-direction:column;
gap:10px;
padding:10px 20px;
}

.nav-menu{
justify-content:center;
gap:10px;
}

.nav-link{
font-size:1rem;
padding:6px 12px;
}

.hero-section{
height:auto;
}

.hero-image{
height:70vh;
}

.hero-text{
width:90%;
}

.hero-text h1{
font-size:1.6rem;
}

.hero-text h3{
font-size:1rem;
}

.hero-btn{
padding:10px 22px;
font-size:0.9rem;
}

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.about-image{
width:200px;
height:200px;
}

.logo{
height:70px;
}

}