body{
font-family:Poppins, sans-serif;
margin:0;
background:#f5f5f5;
color:#333;
}

header{
position: relative;
display: flex;
flex-direction: column; /* stack logo then nav */
align-items: center;
padding: 16px 20px;
/* changed code: subtle dark gradient + light text for good contrast */
background: linear-gradient(180deg, rgba(15,30,36,0.96), rgba(10,18,22,0.96));
color: #fff;
box-shadow: 0 4px 18px rgba(3,9,14,0.35);
}

.logo{
order: 1;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 6px 0;
background: transparent;
width: 260px;   /* increased desktop oval size */
height: 108px;
overflow: hidden; /* crop to container */
border-radius: 999px; /* ensures container is oval */
}

.logo img{
width: 100%;
height: 100%;
object-fit: cover; /* fill & crop image inside oval */
display: block;
border-radius: 999px; /* keep image edges smooth */
}

/* medium screens */
@media (max-width: 1024px) {
  .logo{
    width: 220px;
    height: 96px;
  }
}

/* responsive adjustment for small screens */
@media (max-width: 768px) {
  .logo{
    width: 80vw;            /* ~80% of device width */
    max-width: 360px;       /* optional cap on larger phones */
    aspect-ratio: 260 / 108;/* preserve desktop oval ratio */
    height: auto;
    overflow: hidden;
    border-radius: 999px;
    margin: 6px 0;
  }

  .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 999px;
  }

  /* keep nav/mobile menu behavior */
  nav{
    display:none;
    flex-direction:column;
    background: linear-gradient(180deg, rgba(8,12,16,0.98), rgba(12,16,20,0.98));
    position:absolute;
    top:calc(80vw * 108 / 260 + 70px); /* keeps menu below the larger logo */
    left:0;
    width:100%;
    padding:18px;
    box-shadow: 0 10px 30px rgba(3,9,14,0.45);
  }
}

nav{
order: 2;
width: 100%;
display: flex;
justify-content: center;
gap: 18px;
margin-top: 12px;
flex-wrap: wrap;
background: transparent; /* transparent on desktop so header gradient shows */
}

nav a{
color: #ffffff;
text-decoration: none;
padding: 8px 12px;
border-radius: 8px;
font-weight: 600;
transition: background .18s ease, transform .08s ease;
}
nav a:hover{
background: rgba(255,255,255,0.06);
transform: translateY(-1px);
}

.bookbtn{
background: linear-gradient(90deg,#ff7b2d,#ff9a3d);
color: #091217;
padding: 8px 14px;
border-radius: 8px;
font-weight: 700;
box-shadow: 0 6px 18px rgba(255,122,34,0.14);
}

.hamburger{
position: absolute;
right: 20px;
top: 18px;
cursor: pointer;
display: none; /* shown on small screens below */
color: #ffffff;
font-size: 20px;
}

.hero{
height:90vh;
background:url("https://picsum.photos/1600/900?random=20") center/cover;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
padding:20px;
}

.primary{
background:orange;
padding:12px 20px;
text-decoration:none;
color:white;
margin-top:15px;
}

.container{
padding:50px 20px;
max-width:1000px;
margin:auto;
}

.cards{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.card{
background:white;
padding:15px;
border-radius:6px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.card img{
width:100%;
border-radius:4px;
}

.price{
font-weight:600;
}

.grid{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:20px;
}

.slider{
text-align:center;
}

.slider img{
width:100%;
border-radius:6px;
}

.slider-buttons{
margin-top:10px;
}

form{
display:flex;
flex-direction:column;
gap:10px;
max-width:400px;
}

input,select,button{
padding:10px;
font-size:16px;
}

.whatsapp{
display:inline-block;
margin-top:15px;
background:#25D366;
color:white;
padding:10px 15px;
text-decoration:none;
}

.map iframe{
width:100%;
height:350px;
border:0;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}

/* MOBILE */

@media(max-width:768px){

nav{
display:none;
flex-direction:column;
/* changed code: dark, slightly translucent menu panel with padding */
background: linear-gradient(180deg, rgba(8,12,16,0.98), rgba(12,16,20,0.98));
position:absolute;
top:70px;
left:0;
width:100%;
padding:18px;
box-shadow: 0 10px 30px rgba(3,9,14,0.45);
}

nav.show{
display:flex;
}

.hamburger{
display:block;
}

/* mobile links full width, clear spacing */
nav a{
color:#fff;
padding:12px 10px;
width:100%;
text-align:center;
background:transparent;
}

.cards{
grid-template-columns:1fr;
}

.grid{
grid-template-columns:1fr;
}

}
