
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.buttons{
 flex-wrap: wrap;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .button {
    width: 100%;
    font-size: 16px;
  }
  .buttons {
   flex-direction: column;
 }

  .text {
    font-size: 14px;
  }
}
.logo {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;   
  border: 2px solid #b8962e;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

body {
    overflow-x: hidden;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    background: #f9fafc;
    color: #333;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



.header {
    background: #111;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header img {
    transition: transform 0.3s ease;
}

.header img:hover {
    transform: scale(1.05);
}
.nav a {
    color: #eee;
    text-decoration: none;
    margin-left: 30px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #caa45f;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: #caa45f;
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}


.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("../5100.jpg") center/cover no-repeat;
    color: #fff;
    padding: 340px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero button {
    padding: 12px 30px;
    border: none;
    background: #c59d5f;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
}

.hero button:hover {
    background: #a57c3a;
    transform: translateY(-3px);
}



section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}



main img {
    border-radius: 15px;
    margin: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}

main img:hover {
    transform: scale(1.05);
}



.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
}

.footer p {
    margin: 5px 0;
}


.tabs-section {
    background: #ffffff;
}

.tabs {
    text-align: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    margin: 5px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 30px;
    font-size: 15px;
    transition: 0.3s;
}

.tab-btn:hover {
    background: #ddd;
}

.tab-btn.active {
    background: #c59d5f;
    color: white;
}

.tab-content {
    display: none;
    text-align: center;
    animation: fade 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #111;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.cookie-banner button {
    background: #c59d5f;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    color: white;
}

.cookie-banner button:hover {
    background: #a57c3a;
}

.info-card {
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #c59d5f;
}

.info-main {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.info-block {
    margin-bottom: 15px;
    line-height: 1.7;
}

.info-list {
    margin: 15px 0 20px 20px;
}

.info-list li {
    margin-bottom: 8px;
}

.tab-content img {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
}
.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.tab-btn {
    padding: 12px 28px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #f5f5f5;
}

.tab-btn.active {
    background: #caa45f;
    color: white;
    border-color: #caa45f;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.tab-content {
    display: none;
    animation: fade 0.4s ease;
}

.tab-content.active {
    display: block;
}


.gallery-main{
width:400px;
border-radius:15px;
cursor:pointer;
transition:0.3s;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.gallery-main:hover{
transform:scale(1.05);
}



.gallery-modal{
display:none;
position:fixed;
z-index:2000;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
padding-top:80px;
}



.gallery-content{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
max-width:1000px;
margin:auto;
}



.gallery-content img{
width:250px;
border-radius:10px;
transition:0.3s;
}

.gallery-content img:hover{
transform:scale(1.1);
}



.close{
position:absolute;
top:30px;
right:50px;
font-size:40px;
color:white;
cursor:pointer;
}

@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}

.info-card {
    max-width: 800px;
    margin: auto;
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

html {
    scroll-behavior: smooth;
}

#google_translate_element{
position: fixed;
bottom: 20px;
right: 20px;
background: white;
padding: 8px 12px;
border-radius: 8px;
box-shadow: 0 5px 20px rgba(0,0,0,0.2);
font-size: 14px;
z-index: 9999;
}
.btn {
display: inline-block;
background: #c7a15a;
color: white;
padding: 12px 28px;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
transition: 0.3s;
}

.btn:hover {
background: #a88446;
transform: translateY(-2px);
}

.lang-switch{
display:flex;
gap:8px;
margin-left:20px;
}

.lang-switch button{

background:transparent;
border:1px solid #c59d5f;
color:white;
padding:4px 10px;
border-radius:6px;
cursor:pointer;
font-size:12px;
transition:0.3s;

}

.lang-switch button:hover{

background:#c59d5f;
color:#111;

}