*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#0b0b0b;
color:white;
}

.container{
width:1200px;
max-width:92%;
margin:auto;
}

nav{
position:fixed;
width:100%;
background:rgba(10,10,10,0.9);
backdrop-filter:blur(10px);
padding:18px 0;
z-index:1000;
}

.nav-content{
display:flex;
justify-content:space-between;
align-items:center;
}
.logo2{
display:flex;
align-items:center;
gap:10px;
font-weight:700;
font-size:22px;
}

.logo2 img{
height:40px;
width:auto;
}

.logo2 span{
background:linear-gradient(135deg,#f6d365,#d4af37,#b8962e);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;
}
.logo{
font-size:22px;
font-weight:700;

background: linear-gradient(135deg,#f6d365,#d4af37,#b8962e);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.menu a{
margin:0 15px;
color:white;
text-decoration:none;
font-weight:500;
}

.menu a:hover{
background:linear-gradient(135deg,#f6d365,#d4af37,#b8962e);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

 .btn{
background: linear-gradient(135deg,#f6d365,#d4af37,#b8962e);
color:black;
text-decoration:none;
padding:10px 22px;
border-radius:8px;
font-weight:600;
border:none;
transition:0.3s;
}

.btn:hover{
background: linear-gradient(135deg,#ffe08a,#e0b84c,#c79a2b);
transform:translateY(-2px);
}

.btn.dark{
background:#333;
color:white;
}
.gold-text{
background: linear-gradient(135deg,#f6d365,#d4af37,#b8962e);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}


.section{
padding:50px 0;
}

.section h2{
text-align:center;
margin-bottom:40px;
font-size:42px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.card{
background:#151515;
padding:30px;
border-radius:14px;
text-align:center;
}

.gallery-masonry{
column-count:4;
column-gap:15px;
}

.gallery-masonry img{
width:100%;
margin-bottom:15px;
border-radius:10px;
cursor:pointer;
}

#galleryPopup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
display:none;
align-items:center;
justify-content:center;
z-index:5000;
}

#popupImg{
max-width:900px;
width:90%;
max-height:80vh;
object-fit:contain;
border-radius:10px;
}

.closeBtn{
position:absolute;
top:40px;
right:60px;
font-size:40px;
cursor:pointer;
}

.nav{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:50px;
cursor:pointer;
}

.prev{left:40px;}
.next{right:40px;}

.contact{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-box{
background:#151515;
padding:25px;
border-radius:10px;
margin-bottom:15px;
border-left:4px solid #ffc107;
}

form{
background:#151515;
padding:30px;
border-radius:10px;
}

input,textarea{
width:100%;
padding:12px;
margin-bottom:15px;
background:#0b0b0b;
border:1px solid #333;
border-radius:6px;
color:white;
}
input:focus:invalid,
textarea:focus:invalid {
  border-color: red;
}

button{
background:#ffc107;
border:none;
padding:14px;
border-radius:6px;
cursor:pointer;
width:100%;
}

footer{
background:#111;
padding:40px 0;
margin-top:60px;
text-align:center;
}

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:28px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
}

/* HERO */

.hero{
height:100vh;
display:flex;
align-items:center;
position:relative;
overflow:hidden;
}

.hero-content{
max-width:900px;
}

.hero-badge{
display:inline-block;
background: linear-gradient(135deg,#f6d365,#d4af37);
color:black;
font-weight:600;
padding:8px 18px;
border-radius:20px;
font-size:14px;
margin-bottom:20px;
}
 
.hero h1{
font-size:64px;
line-height:1.2;
margin-bottom:20px;
}

.hero p{
color:#ccc;
font-size:18px;
margin-bottom:30px;
}

.buttons{
display:flex;
gap:15px;
}

.hero-btn{
background:linear-gradient(135deg,#f6d365,#d4af37,#b8962e);
color:black;
font-weight:600;
border:none;
}

.hero-btn:hover{
background:linear-gradient(135deg,#ffe08a,#e0b84c,#c79a2b);
}

.hero-btn-outline{
background:transparent;
border:2px solid #555;
color:white;
}

.hero-btn-outline:hover{
background:linear-gradient(135deg,#f6d365,#d4af37,#b8962e);
border-color:#d4af37;
color:black;
}

.hero-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
}

.hero-bg-img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 2s ease-in-out;
}

.hero-bg-img.active{
opacity:1;
}

/* gradient peste imagini */

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(90deg, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.4));
z-index:-1;
}
/* FOOTER */

.footer{
background:#111;
padding:60px 0 30px;
margin-top:80px;
}

.footer-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
}

.footer-brand{
display:flex;
align-items:center;
gap:10px;
font-weight:600;
}

.footer-logo{
width:35px;
height:35px;

background:linear-gradient(135deg,#f6d365,#d4af37,#b8962e);

color:black;
display:flex;
align-items:center;
justify-content:center;
border-radius:6px;
font-size:18px;
}

.footer-social a{
margin-left:20px;
color:#bbb;
text-decoration:none;
font-size:14px;
}

.footer-social a:hover{
background:linear-gradient(135deg,#f6d365,#d4af37,#b8962e);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.footer-line{
border:none;
border-top:1px solid #222;
margin:20px 0;
}

.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
color:#aaa;
}

.footer-links a{
margin-left:20px;
color:#aaa;
text-decoration:none;
}

.footer-links a:hover{
color:#ffc107;
}
.gallery-item{
overflow:hidden;
border-radius:10px;
}

.gallery-item img{
width:100%;
display:block;
transition:transform .5s ease;
}

.gallery-item:hover img{
transform:scale(1.1);
}

/* formular */

.contact-form{
display:flex;
flex-direction:column;
gap:20px;
}

.form-row{
display:flex;
gap:20px;
}

.form-group{
flex:1;
display:flex;
flex-direction:column;
}

.form-group label{
margin-bottom:6px;
font-size:14px;
color:#ccc;
}

input, textarea{
padding:12px;
border-radius:8px;
border:1px solid #444;
background:#111;
color:white;
font-size:14px;
}

input:focus, textarea:focus{
outline:none;
border-color:#ffc107;
}

/* required invalid */

/* input:invalid,
textarea:invalid{
border-color:#ff4d4d;
} */
input, textarea {
border: 1px solid #ccc;
}

/* roșu doar după submit */
.form-submitted input:invalid,
.form-submitted textarea:invalid {
border-color: red;
}
.submit-btn{
background:#ffc107;
border:none;
padding:14px;
font-weight:600;
border-radius:8px;
cursor:pointer;
font-size:16px;
}

.submit-btn:hover{
opacity:.9;
}
.input-error{
border:2px solid #ff4d4d !important;
box-shadow:0 0 6px rgba(255,0,0,0.4);
}


/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.hamburger span{
width:25px;
height:3px;
background:white;
transition:0.3s;
}

.hamburger.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
opacity:0;
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg) translate(6px,-6px);
}

/* MOBILE */

@media(max-width:900px){

.hamburger{
display:flex;
}

.menu{
position:absolute;
top:70px;
left:0;
width:100%;
background:#0b0b0b;
flex-direction:column;
align-items:center;
display:none;
padding:20px 0;
}

.menu a{
margin:12px 0;
font-size:18px;
}

.menu.active{
display:flex;
}

nav .btn{
display:none;
}

.container{
padding:0 15px;
}

.hero h1{
font-size:38px;
}

.gallery-masonry{
column-count:2;
}

.contact{
grid-template-columns:1fr;
}

.form-row{
flex-direction:column;
}

}