@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter', sans-serif;
}

body{
color:#1b3b2f;
line-height:1.5;
background:#ffffff;
}

/* ================= TOP BAR ================= */
.top-bar {
background:#0f1a2b;
color:white;
text-align:center;
padding:10px;
font-size:14px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

/* ================= NAVBAR ================= */
nav {
background: linear-gradient(to right, #ffffff 0%, #dff5e1 50%, #bfe8c9 100%);
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 50px;
position:sticky;
top:0;
z-index:999;
transition:0.3s;
}

nav.shrink {
padding:8px 40px;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(10px);
}

.brand {
display:flex;
align-items:center;
gap:10px;
}

.brand img {
height:110px;
}

nav.shrink .brand img {
height:80px;
}

.brand-name {
font-size:26px;
font-weight:700;
color:#1b3b2f;
white-space:nowrap;
}

nav div a {
margin-left:20px;
text-decoration:none;
color:#1b3b2f;
font-size:17px;
font-weight:600;
}

nav div a:hover {
color:#2f7d4a;
}

/* ================= HERO ================= */
.hero-slideshow {
position:relative;
height:85vh;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.slide {
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
animation:fade 15s infinite;
}

.slide1 {background-image:url('images/hero1.jpg');}
.slide2 {background-image:url('images/hero2.jpg'); animation-delay:5s;}
.slide3 {background-image:url('images/hero3.jpg'); animation-delay:10s;}

@keyframes fade {
0% {opacity:0;}
10% {opacity:1;}
30% {opacity:1;}
40% {opacity:0;}
100% {opacity:0;}
}

.hero-overlay {
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

.hero-content {
position:relative;
color:white;
z-index:2;
}

.hero-title {
font-size:3.5rem;
font-weight:700;
}

.hero-content p {
font-size:18px;
margin:10px 0 15px;
}

.hero-content a {
padding:12px 26px;
background:#E8C27D;
color:black;
text-decoration:none;
border-radius:8px;
font-weight:600;
}
/* PREMIUM PARAGRAPH STYLING */

p{
font-size:16px;
line-height:1.7;
color:#444;
margin:8px auto;
max-width:750px;
}

/* section paragraphs */
.section p{
font-size:17px;
color:#555;
}

/* card text */
.card p{
font-size:15px;
color:#555;
line-height:1.6;
}

/* hero paragraph */
.hero-content p{
font-size:18px;
color:#f5f5f5;
}

/* about page text */
.about p{
font-size:17px;
color:#444;
}
body{
font-family:'Inter', 'Segoe UI', sans-serif;
letter-spacing:0.2px;
}
.hero-content p{
white-space:nowrap;
text-align:center;
font-size:clamp(14px,2vw,18px);
}
.hero-content p{
text-align:center;
margin:10px auto 15px;
max-width:800px;
}
.hero-title{
font-size:3.5rem;
font-weight:700;
color:#E8C27D; /* gold highlight */
text-shadow:0 2px 10px rgba(0,0,0,0.4);
}
p{
text-align:center;
max-width:750px;
margin:8px auto;
color:#555;
line-height:1.6;
font-size:16px;
}
.center-text{
text-align:center;
max-width:700px;
margin:0 auto;
font-size:17px;
color:#555;
}

/* better spacing */
h2 + p{
margin-top:5px;
}

h3 + p{
margin-top:4px;
}

/* ================= TYPOGRAPHY ================= */
h1,h2,h3{
text-align:center;
color:#1b3b2f;
}

h2{
font-size:30px;
margin-bottom:10px;
}

h3{
font-size:20px;
margin:8px 0 6px;
}

.section{
width:100%;
max-width:1200px;
margin:0 auto;
}
body{
min-width:1000px;
}
html, body{
width:100%;
overflow-x:hidden;
}
.about-page .section{
background:white;
}

.section{
width:100%;
max-width:1200px;
margin:0 auto;
}

nav{
flex-wrap:nowrap;
width:100%;
}

/* ================= SECTIONS ================= */
.section {
padding:50px 40px;
text-align:center;
}

/* GRID */
.grid {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

/* CARDS */
.card {
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
text-align:center;
padding-bottom:15px;
transition:0.3s;
}

/* glow hover */
.card:hover{
transform: translateY(-6px) scale(1.01);
box-shadow:
0 10px 25px rgba(0,0,0,0.12),
0 0 18px rgba(232,194,125,0.6);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.card p{
padding:0 12px;
}

/* STAFF IMAGES */
.staff-img{
width:100%;
height:260px;
object-fit:cover;
display:block;
border-radius:8px;
}
.hero-title{
font-size:3.5rem;
font-weight:700;
background:linear-gradient(45deg,#2f7d4a,#E8C27D);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* BADGE */
.badge{
display:inline-block;
background:#E8C27D;
padding:5px 12px;
border-radius:20px;
font-size:13px;
font-weight:600;
margin:6px 0 10px;
}

/* BUTTONS */
.section a,
.hero-content a{
display:inline-block;
margin-top:12px;
padding:12px 24px;
background:#E8C27D;
color:#000;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

/* FORM */
.booking-form {
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:10px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
padding:12px;
border:1px solid #ddd;
border-radius:8px;
}

.booking-form button {
padding:12px;
background:#E8C27D;
border:none;
border-radius:8px;
font-weight:600;
}

footer{
margin-top:auto;
}

/* FOOTER */
footer {
background:#0f1a2b;
color:white;
text-align:center;
padding:25px;
font-size:14px;
}
body{
display:flex;
flex-direction:column;
min-height:100vh;
}
nav{
flex-wrap:nowrap;
}
footer{
margin-top:auto;
}

/* MOBILE */
@media(max-width:768px){

nav {
flex-direction:column;
text-align:center;
}

.hero-title {
font-size:2rem;
}

.brand-name {
font-size:20px;
}

.section{
padding:40px 20px;
}

}