@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #213E46;
  --primary-light: #2d535e;
  --primary-dark: #15272c;
  --accent: #da232a;
  --accent-hover: #c51623;
  --bg-cream: #FAF8F5;
  --text-dark: #1f2d30;
  --text-light: #ffffff;
  --text-muted: #6e7e82;
  --holiday-red: #e63946;
  --holiday-bg: rgba(230, 57, 70, 0.08);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.12);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

/* ----------------------------------------------------
   1. CSS Reset & Base Elements
   ---------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ----------------------------------------------------
   2. Sticky Glassmorphic Navbar
   ---------------------------------------------------- */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header-nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(33, 62, 70, 0.08);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link img {
  height: 55px;
  width: auto;
  transition: var(--transition);
}

.header-nav.scrolled .logo-link img {
  height: 48px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-item a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  padding: 8px 0;
}

.header-nav.scrolled .nav-item a {
  color: var(--primary);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-item a:hover::after,
.nav-item.active a::after {
  width: 100%;
}

.nav-item a:hover {
  color: var(--accent) !important;
}

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 10px;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--text-light);
  transition: var(--transition);
}

.header-nav.scrolled .hamburger-line {
  background-color: var(--primary);
}

/* Hamburger active transformation */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Responsive navigation drawer */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item a {
    color: var(--text-light) !important;
    font-size: 1.2rem;
  }
}

/* ----------------------------------------------------
   3. Utility Classes & Layout Containers
   ---------------------------------------------------- */
.section {
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.mb-50 {
  margin-bottom: 50px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(218, 35, 42, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 35, 42, 0.35);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ----------------------------------------------------
   4. Parallax Hero Section
   ---------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(15, 30, 35, 0.5), rgba(15, 30, 35, 0.7)), url('images/photo_2023-06-09_19-31-50.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-size: 4rem;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ----------------------------------------------------
   5. Holiday Banner
   ---------------------------------------------------- */
.holiday-banner {
  border-radius: var(--border-radius);
  background-color: var(--holiday-bg);
  border: 1px dashed var(--holiday-red);
  padding: 30px;
  max-width: 800px;
  margin: -50px auto 80px auto;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: pulse 3s infinite;
}

.holiday-title {
  color: var(--holiday-red);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.holiday-banner p {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.hours-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(230, 57, 70, 0.15);
  padding-top: 15px;
  font-size: 0.9rem;
}

.hours-item {
  color: var(--text-muted);
}

.hours-item strong {
  color: var(--primary);
}

/* ----------------------------------------------------
   6. Service / Service Cards
   ---------------------------------------------------- */
.services-section {
  background-color: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 15px auto 0 auto;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 60px auto;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: var(--bg-cream);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(33, 62, 70, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(218, 35, 42, 0.3);
}

.card-img-wrapper {
  overflow: hidden;
  height: 250px;
  position: relative;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.card-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link i {
  font-size: 0.8rem;
  transition: var(--transition);
}

.service-card:hover .card-link {
  color: var(--accent);
}

.service-card:hover .card-link i {
  transform: translateX(4px);
}

/* ----------------------------------------------------
   7. Private Events & Form
   ---------------------------------------------------- */
.events-section {
  background: linear-gradient(rgba(33, 62, 70, 0.92), rgba(33, 62, 70, 0.96)), url('images/My-project-1.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
}

.events-section .section-title {
  color: var(--text-light);
}

.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .events-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.events-info h3 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.events-info p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  opacity: 0.85;
}

.payment-showcase {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.payment-showcase h4 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.payments-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.payment-img {
  height: 35px;
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition);
}

.payment-img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* Event Booking Glassmorphic Form */
.booking-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 22px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(218, 35, 42, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.datepicker-wrapper {
  position: relative;
}

.datepicker-wrapper i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

/* Light theme variants for normal forms */
.light-form .form-control {
  background: #ffffff;
  border-color: #cbd5e1;
  color: var(--text-dark);
}
.light-form .form-control::placeholder {
  color: var(--text-muted);
}
.light-form .form-control:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(33, 62, 70, 0.1);
}

/* ----------------------------------------------------
   8. Menu Page Details
   ---------------------------------------------------- */
.menu-header-section {
  background: linear-gradient(rgba(33, 62, 70, 0.8), rgba(33, 62, 70, 0.9)), url('images/302069331_475582111244240_77074270024987189_n.jpg');
  background-size: cover;
  background-position: center;
  padding: 140px 0 60px 0;
  text-align: center;
  color: var(--text-light);
}

.menu-header-section h1 {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: 10px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.menu-tab-btn {
  background-color: #ffffff;
  border: 1px solid rgba(33, 62, 70, 0.1);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.menu-tab-btn.active i {
  color: var(--accent);
}

.menu-content-wrapper {
  position: relative;
  min-height: 400px;
}

.menu-category-section {
  display: none;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.menu-category-section.active {
  display: block;
}

.menu-category-header {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
  margin: 40px 0 30px 0;
}

.menu-category-header h2 {
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px 50px;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-item {
  display: flex;
  flex-direction: column;
  padding: 5px 0;
}

.menu-item-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.menu-item-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
}

.menu-item-dots {
  flex-grow: 1;
  border-bottom: 2px dotted rgba(33, 62, 70, 0.15);
  margin: 0 15px;
}

.menu-item-price {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.menu-item-description {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
}

.menu-allergeni {
  background-color: var(--bg-cream);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 20px;
  margin-top: 50px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.menu-allergeni strong {
  color: var(--primary);
}

.apericena-card {
  margin: 60px auto 0 auto;
  max-width: 600px;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(218, 35, 42, 0.15);
  text-align: center;
}

.apericena-img-container {
  max-height: 450px;
  overflow: hidden;
}

.apericena-img-container img {
  width: 100%;
  height: auto;
  display: block;
}

.apericena-body {
  padding: 30px;
}

/* ----------------------------------------------------
   9. Contacts Page Details
   ---------------------------------------------------- */
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 992px) {
  .contacts-layout {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info-list {
  list-style: none;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(33, 62, 70, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
  border: 1px solid rgba(33, 62, 70, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----------------------------------------------------
   10. Careers Page Details
   ---------------------------------------------------- */
.careers-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 992px) {
  .careers-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.careers-flyer {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(33, 62, 70, 0.05);
}

.careers-flyer img {
  width: 100%;
  height: auto;
  display: block;
}

.careers-form-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* File Upload customization */
.file-upload-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}

.file-upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed #cbd5e1;
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

.file-upload-btn:hover {
  border-color: var(--primary);
  background-color: rgba(33, 62, 70, 0.02);
  color: var(--primary);
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* ----------------------------------------------------
   11. Footer Styling
   ---------------------------------------------------- */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 60px 0 30px 0;
  margin-top: auto;
}

.footer-divider {
  height: 2px;
  background-color: var(--accent);
  width: 100px;
  margin: 0 auto 30px auto;
}

.footer-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.footer-title {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.8;
}

.footer-copyright {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ----------------------------------------------------
   12. Animations
   ---------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.05);
  }
  50% {
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
  }
  100% {
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.05);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

.management-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent);
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(218, 35, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
  font-family: 'Montserrat', sans-serif;
}
