/* ==========================
RESERVATIONS-US.ONLINE
GLOBAL STYLESHEET
========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial, Helvetica, sans-serif;
font-size:16px;
line-height:1.7;
color:#333;
background:#ffffff;
overflow-x:hidden;
}

/* Layout */

.container{
width:100%;
max-width:1200px;
margin:0 auto;
padding:0 20px;
}

img{
max-width:100%;
height:auto;
display:block;
}

a{
text-decoration:none;
transition:.3s ease;
}

ul{
list-style:none;
}

/* Header */

header{
background:#0f172a;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
flex-wrap:wrap;
}

.logo{
font-size:28px;
font-weight:700;
color:#fff;
}

nav ul{
display:flex;
gap:20px;
flex-wrap:wrap;
}

nav a{
color:#fff;
font-weight:500;
}

nav a:hover{
opacity:.8;
}

/* Hero */

.hero{
padding:90px 0;
background:#f8fafc;
text-align:center;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
max-width:850px;
margin:0 auto 25px;
}

/* Buttons */

.btn{
display:inline-block;
padding:14px 28px;
background:#2563eb;
color:#fff;
border-radius:6px;
font-weight:600;
}

.btn:hover{
opacity:.9;
}

/* Sections */

section{
padding:70px 0;
}

.section-title{
text-align:center;
margin-bottom:40px;
}

.section-title h2{
font-size:36px;
margin-bottom:10px;
}

/* Cards */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:#fff;
border:1px solid #e5e7eb;
border-radius:10px;
padding:25px;
height:100%;
}

.card h3{
margin-bottom:15px;
}

/* Pricing */

table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

table th,
table td{
padding:15px;
border:1px solid #ddd;
text-align:left;
}

table th{
background:#f8fafc;
}

/* Contact */

.contact-box{
background:#f8fafc;
padding:30px;
border-radius:10px;
}

.contact-box p{
margin-bottom:10px;
}

form{
display:grid;
gap:15px;
}

input,
select,
textarea{
width:100%;
padding:14px;
border:1px solid #d1d5db;
border-radius:6px;
font-size:16px;
}

textarea{
min-height:140px;
resize:vertical;
}

button{
border:none;
cursor:pointer;
}

/* FAQ */

.faq-item{
margin-bottom:20px;
padding-bottom:20px;
border-bottom:1px solid #e5e7eb;
}

/* Notice */

.notice{
background:#fff7ed;
border-left:5px solid #f59e0b;
padding:20px;
margin-top:20px;
border-radius:4px;
}

/* Footer */

footer{
background:#0f172a;
color:#fff;
padding:60px 0 30px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-bottom:30px;
}

footer h3{
margin-bottom:15px;
}

footer a{
color:#fff;
display:block;
margin-bottom:8px;
}

footer a:hover{
opacity:.8;
}

.copyright{
border-top:1px solid rgba(255,255,255,.15);
padding-top:20px;
text-align:center;
}

/* Responsive */

@media(max-width:992px){

.hero h1{
font-size:40px;
}

.section-title h2{
font-size:32px;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:15px;
}

nav ul{
justify-content:center;
}

.hero{
padding:70px 0;
}

.hero h1{
font-size:34px;
}

.section-title h2{
font-size:28px;
}

table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

}

@media(max-width:480px){

.container{
padding:0 15px;
}

.hero h1{
font-size:28px;
}

.btn{
width:100%;
text-align:center;
}

}

.cookie-banner{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#222;
color:#fff;
padding:20px;
z-index:9999;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.cookie-banner button{
padding:10px 20px;
border:none;
cursor:pointer;
}
