html {
scroll-behavior: smooth;
scroll-padding-top:80px;
}

body {
background: #0f0f0f;
color:#0f0f0f;
font-family:'Poppins', sans-serif;
}

h1, h2, h3 {
color:#d4af37;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

body{
background:#ffe5d4
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
scroll-padding-top: 100px;
background:#0f0f0f;
color:white;
position:sticky;
top:0;
z-index:1000;
}

nav h2 {
background: linear-gradient(45deg,#d4af37, #ffd700);
background-clip: text;                   
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size:24px;
font-weight: 600;
text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

nav ul {
display:flex;
list-style:none;
gap:20px;
}

nav ul li {
list-style:none;
display:flex;
margin:0 15px;
}

nav ul li a {
text-decoration:none;
color:#ffff;
font-weight: 500;
position:relative;
transition:0.3s;
}

nav ul a {
position:relative;
text-decoration:none;
color:#ffff;
margin:0 15px;
font-weight:500;
}

nav ul li a::after {
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0%;
height:2px;
background:#f4c2c2;
transition:0.3s;
}

nav ul a:hover{
color:#f4c2c2;
}

nav ul li a:hover:after {
width:100%;
}

.btn {
background: linear-gradient(45deg, #dfaf37, #ffd700);
color:white !important;
font-weight:bold;
padding:10px, 20px;
border-radius:30px;
transition:0.3s;
}

.btn:hover {
background:#d4af37;
color:#ffff;
transform: scale(1.1);
box-shadow:0 0 15px rgba(255,120,150, 0.6);
}

.section{
text-align:centre;
padding:100px 20px;
padding-top: 60px;
scroll-margin-top: 80px;
}

.fade-in {
animation:fadeIn 1.5s ease-in;
}

.section img{
width:60%;
max-width:600px;
height:auto;
padding-top: 60px;
margin:20px auto;
scroll-margin-top:80px;
display:block;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.section h1{
font-size:36px;
padding-top: 60px;
margin-bottom:15px;
scroll-margin-top: 80px;
}

.section p{
font-size:18px;
max-width:700px;
padding-top: 60px;
margin:auto;
margin-bottom:10px;
scroll-margin-top: 80px;
}

section {
scroll-margin-top: 120px;
padding-top: 60px;
}

button{
padding:12px 25px;
background:#caa85d;
border:none;
color:white;
font-size:16px;
border-radius:5px;
cursor:pointer;
}

.footer{
background:#f6e6d8;
text-align:centre;
padding:30px;
margin-top:40px;
}

footer h3{
margin-bottom:10px;
}

footer p{
font-size:14px;
margin:5px 0;
}

.hero {
display:flex;
flex-direction:column;
padding-left:50px;
justify-content:centre;
align-items: centre;
color:black;
text-align:centre;
background-size:cover;
background-position:centre;
background-repeat:no-repeat;
height:100vh;
}

.hero::before {
content:"";
position:absolute;
inset:0;
background: none;
}

.hero h1 {
font-size:50px;
margin-bottom:10px;
}

.hero p {
font-size:20px;
margin-top:10px;
position:relative;
color:black;
}

.service-container {
display:flex;
justify-content:centre;
gap:20px;
flex-wrap:wrap;
margin-top:30px;
}

.service-card {
background:black;
color:white;
padding:20px;
width:250px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
text-align:centre;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
transform:translateY(-10px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.service-card h3{
margin-bottom:10px;
}

.service-card p{
font-size:15px;
}

.fade-in {
opacity: 1;
transform:translateY(30px);
transition:all 0.6s ease;
}

.fade-in.show {
opacity: 1;
transform: translateY(0);
}

.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }

.booking-form {
display:flex;
flex-direction:column;
gap: 10px;
width: 300px;
margin: auto;
}

.booking-form input,
.booking-form select {
padding:10px;
border-radius:8px;
border:1px solid #ccc;
}

.booking-form button {
background:#ff758c;
color:white;
border:none;
padding:10px;
border-radius:20px;
cursor:pointed;
}

@media (max-width:768px)  {
nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;


.card  {
width: 90%;
}

.hero h1  {
font-size: 28px;
}

.hero p {
font-size: 14px;
}
}

nav ul {
flex-direction: column;
width: 100%;
gap: 10px;
}

.hero h1 {
font-size: 50px;
}

.service.container {
display: flex;
flex-wrap: wrap;
gap:20px;
justify-content: center;
flex-direction: column;
align-items:centre;
}
}

section {
display:block !important;
opacity: 1 !important;
visibility: visible !important;
}

.card  {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
padding: 20px;
backdrop-filter: blur(10px);
box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
transition:0.4s;
width: 300px;
max-width: 100%;
}

.card:hover {
transform: translateY(-10px) scale(1.03);
box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.card img  {
width:100%;
border-radius: 15px;
margin-bottom: 10px;
height: 180px;
object-fit: cover;
border-radius: 10px;
filter: brightness(0.85);
}

.card p {
color:white !important;
}
