/* PAGE WRAPPER */

.page-wrapper{
max-width:1100px;
margin:auto;
padding:120px 20px 60px;
}
/* =========================
GLOBAL RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,body{
height:100%;
font-family:'Poppins',sans-serif;
background:#f7f7f7;
color:#333;
line-height:1.6;
}

body{
display:flex;
flex-direction:column;
min-height:100vh;
}

/* =========================
TYPOGRAPHY
========================= */

h1,h2,h3{
font-family:'Playfair Display',serif;
font-weight:600;
}

h1{
font-size:48px;
margin-bottom:15px;
}

h2{
font-size:34px;
margin-bottom:20px;
}

h3{
font-size:22px;
}

/* =========================
HEADER
========================= */

header{
position:fixed;
top:0;
left:0;
width:100%;
height:70px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 6%;
background:#1e3a34;
color:white;
z-index:1000;
}

.logo{
font-size:22px;
font-weight:600;
}

nav{
display:flex;
flex-wrap:wrap;
}

nav a{
color:white;
text-decoration:none;
margin-left:20px;
font-size:14px;
transition:.3s;
}

nav a:hover{
opacity:.8;
}

/* =========================
MAIN CONTENT
========================= */

.container{
flex:1;
max-width:1200px;
margin:auto;
width:100%;
padding:100px 20px 40px;
}

/* =========================
HERO SECTION
========================= */

.hero{
position:relative;
height:90vh;
overflow:hidden;
}

.hero video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
}

.hero-content p{
font-size:18px;
margin-bottom:20px;
}

.hero-btn{
background:white;
padding:12px 26px;
border-radius:6px;
text-decoration:none;
color:#333;
font-weight:500;
}

/* =========================
ABOUT SECTION
========================= */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
margin-top:40px;
}

.about-grid img{
width:100%;
border-radius:10px;
}

/* =========================
ROOM CARDS
========================= */

.room-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

.room-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 12px 25px rgba(0,0,0,0.08);
transition:.3s;
text-align:center;
}

.room-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

.room-card img{
width:100%;
height:200px;
object-fit:cover;
}

.room-card h3{
padding:10px;
}

.room-card p{
margin-bottom:10px;
}

/* =========================
BUTTONS
========================= */

.btn{
display:inline-block;
background:#1e3a34;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
transition:.3s;
}

.btn:hover{
background:#294b44;
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* =========================
AMENITIES
========================= */

.amenities{
background:#f1f2f0;
padding:70px 0;
}

.amenities-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
margin-top:30px;
text-align:center;
}

.amenity{
background:white;
padding:20px;
border-radius:8px;
box-shadow:0 5px 12px rgba(0,0,0,0.05);
}

/* =========================
GALLERY
========================= */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
margin-top:30px;
}

.gallery-grid img{
width:100%;
border-radius:8px;
cursor:pointer;
transition:.3s;
}

.gallery-grid img:hover{
transform:scale(1.03);
}

/* =========================
LIGHTBOX
========================= */

#lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
z-index:9999;
}

#lightbox img{
max-width:90%;
max-height:90%;
border-radius:10px;
}

/* =========================
FORMS
========================= */

.form-container{
max-width:500px;
margin:auto;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.form-container h2{
text-align:center;
margin-bottom:20px;
}

form input,
form select,
form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:6px;
}

form button{
width:100%;
padding:12px;
background:#1e3a34;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}

/* TABLE DESIGN */

.table-box{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

table{
width:100%;
border-collapse:collapse;
font-size:14px;
}

th{
background:#1e3a34;
color:white;
padding:12px;
text-align:left;
}
table a{
background:#1e3a34;
color:white;
padding:6px 12px;
border-radius:6px;
text-decoration:none;
font-size:13px;
}

table a:hover{
background:#2d5c50;
}
td{
padding:12px;
border-bottom:1px solid #eee;
}

tr:hover{
background:#f7f7f7;
}

/* =========================
FOOTER
========================= */

footer{
background:#1e3a34;
color:white;
text-align:center;
padding:25px;
margin-top:auto;
}

/* =========================
ANIMATION
========================= */

section{
animation:fadein 0.8s ease;
}

@keyframes fadein{
from{opacity:0;transform:translateY(20px);}
to{opacity:1;transform:translateY(0);}
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

header{
flex-direction:column;
height:auto;
padding:15px;
}

nav{
margin-top:10px;
}

nav a{
margin:6px 10px;
}

.container{
padding-top:120px;
}

.hero-content h1{
font-size:36px;
}

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

}