*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Montserrat,sans-serif;
background:#faf8f3;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

#header{
position:fixed;
width:100%;
top:0;
left:0;
z-index:1000;
transition:.3s;
}

#header.scrolled{
background:white;
box-shadow:0 3px 12px rgba(0,0,0,.1);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.videos-section {
    padding: 80px 0;
  
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.video-gallery a {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border-radius: 10px;
}

.video-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.video-gallery a:hover img {
    transform: scale(1.05);
}

.video-gallery span {
    display: block;
    text-align: center;
    padding: 12px;
    font-weight: 600;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:100px; /* промени според желаната големина */
    width:auto;
    display:block;
}

nav ul{
display:flex;
list-style:none;
gap:45px;
}
nav ul li a {
    position: relative;
    text-decoration: none;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 4px;
    background: #d4a437;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}
nav a{
	text-decoration:none;
    color:white;
    font-size:20px;
    font-weight:900;
    text-transform:uppercase;
}

#header.scrolled nav a{
color:#333;
}

.hero{
height:550px;
background:url("images/hero1.png") center center/cover;
position:relative;
display:flex;
align-items:center;
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(
90deg,
rgba(0,0,0,.60),
rgba(0,0,0,.25)
);
}

.hero-content{
position:relative;
z-index:2;
color:white;
}

.hero-small{
font-size:28px;
font-family:"Playfair Display",serif;

}

.hero h1{
font-size:60px;
font-family:"Playfair Display",serif;
margin-bottom:20px;
}

.gold-line{
width:70px;
height:4px;
background:#d4a437;
margin:25px 0;
}

.hero-description{
font-size:24px;
max-width:650px;
line-height:1.6;
}

.hero-features{
display:flex;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
}

.feature{
background:rgba(255,155,0, .80);
padding:15px 20px;
border-radius:10px;
backdrop-filter:blur(5px);
}

.info-section{
background:white;
padding:60px 0;
}

.info-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.info-card{
text-align:center;
}

.info-card h3{
color:#6f7d32;
margin-bottom:10px;
}

.about,
.gallery-section,
.prices,
.contacts{
padding:50px 0;
}

h2{
font-family:"Playfair Display",serif;
font-size:50px;
margin-bottom:15px;
}

.section-line{
width:70px;
height:4px;
background:#d4a437;
margin-bottom:30px;
}

.gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery img{
width:100%;
height:260px;
object-fit:cover;
border-radius:12px;
transition:.3s;
cursor:pointer;
}

.gallery img:hover{
transform:scale(1.04);
}

.price-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.price-card{
background:white;
padding:40px;
text-align:center;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}
.about-text{
    text-align: justify;
    line-height: 2.1;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #444;
    max-width: 950px;
    margin: 0 auto;
}
.about-text1{
    text-align:center;
    font-weight:800;
    line-height:1.5;
    font-size:16px;
    max-width:900px;
    margin:0 auto;
}
.price{
font-size:42px;
font-weight:700;
color:#d4a437;
margin:20px 0;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

}

iframe{
width:100%;
height:100%;
border:none;
border-radius:12px;
}

footer{
background:#2d2d2d;
color:white;
text-align:center;
padding:30px;
}

#menu-btn{
display:none;
font-size:30px;
color:#d4a437;
cursor:pointer;
}

@media(max-width:900px){

.info-grid,
.price-grid,
.contact-grid,
.gallery{
grid-template-columns:1fr;
}

.hero h1{
font-size:60px;
}

nav{
display:none;
}

nav.active{
display:block;
position:absolute;
top:80px;
right:20px;
background:white;
padding:20px;
border-radius:10px;
}

nav.active a{
color:#333;
}

nav.active ul{
flex-direction:column;
}

#menu-btn{
display:block;
}
}
@media (max-width: 768px) {
  .hero-features {
    display: none;
  }

  .hero-description {
    font-size: 14px;
  }
}
.info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6f7f2b;
    font-size: 22px;
}

.info-card h3 i {
    font-size: 24px;
    color: #6f7f2b;
}