/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Glass Header */
.glass-header {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #e91e63;
}

nav a {
  color: #333;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #e91e63;
}

.dark-mode-btn {
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('images/BG1008990www.tiktarh.com_.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(to right, #ff4081, #c2185b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 10px;
  font-size: 1.2rem;
}

button {
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(to right, #e91e63, #ad1457);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 25px;
  transition: transform 0.3s;
}

button:hover {
  transform: scale(1.05);
}

/* Parallax */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 20px;
  background-color: #f8bbd0;
  color: white;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin: 10px 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Glass Section */
.glass-section {
  backdrop-filter: blur(10px);
  background: rgb(7, 207, 210);
  padding: 40px 20px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 800px;
  color: rgb(255, 255, 255);
  text-align: center;
}

.gradient-text {
  font-size: 2rem;
  background: linear-gradient(to right, #ff4081, #c2185b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Reservation Form */
.reservation-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reservation-form input,
.reservation-form select {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* Footer */
.glass-footer {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  color: white;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #e91e63;
}

.dark-mode {
  background-color: #121212;
  color: #fff;
}

.dark-mode .glass-header,
.dark-mode .glass-section,
.dark-mode .glass-footer {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}