
:root {
  
  --primary-green: #01573c; 
  --dark-green: #003022; 
  --gold: #d4af37; 
  --gold-light: #f3d47f; 
  --white: #ffffff;
  --off-white: #f5f5f5; 
  --dark-grey: #333333;
  --black: #111111;

  
  --font-main: "Montserrat", sans-serif;
  --font-heading: "Playfair Display", serif;

  
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;

  
  --section-padding: 80px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--dark-grey);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* DEMO Watermark Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  /* SVG Watermark text */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Montserrat, sans-serif' font-size='100' font-weight='900' fill='rgba(0,0,0,0.04)' transform='rotate(-45 250 250)'%3EDEMO%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--off-white); 
}

::-webkit-scrollbar-thumb {
  background: var(--primary-green); 
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green); 
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--black);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section-padding {
  padding: var(--section-padding);
}

.bg-light {
  background-color: var(--off-white);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}


.section-title {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-grey);
  max-width: 700px;
  margin: 0 auto;
}

.divider {
  height: 3px;
  width: 60px;
  background-color: var(--gold);
  margin: 20px 0;
}

.gold {
  color: var(--gold);
}


.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background-color: var(--white);
  color: var(--gold);
  border-color: var(--gold);
}


#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.4s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
}

.logo .gold {
  margin: 0 5px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 5px;
  transition: color var(--transition-fast);
}

.nav-links li a:hover {
  color: var(--primary-green);
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--gold);
  transition: width var(--transition-fast);
}

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

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary-green);
}


.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  
  background: url("images/interior1.jpg") center/cover no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(1, 87, 60, 0.85) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gold-text {
  color: var(--gold);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text,
.about-image {
  flex: 1;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

.gold-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
}

.image-wrapper {
  position: relative;
  padding: 20px;
}

.stylized-img {
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.img-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 90%;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: 1;
}


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

.showcase-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  border-bottom: 4px solid var(--primary-green);
}

.showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-img-container {
  height: 250px;
  overflow: hidden;
}

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

.showcase-card:hover .card-img-container img {
  transform: scale(1.1);
}

.card-content {
  padding: 30px 20px;
  text-align: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-green);
}

.card-content p {
  color: #666;
  font-size: 1rem;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 87, 60, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2.5rem;
  transform: scale(0);
  transition: transform var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.note {
  font-size: 0.9rem;
  color: #888;
  background: #f9f9f9;
  padding: 10px;
  display: inline-block;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}


.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  overflow-y: auto;
}

.modal-img-content {
  margin: 100px auto;
  display: block;
  max-width: 80%;
  max-height: 80vh;
  animation: zoom 0.3s;
  border-radius: 4px;
  object-fit: contain;
}

.contact-modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  margin: 100px auto 50px auto;
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  animation: zoom 0.3s;
}

.contact-modal-content h2 {
  color: var(--primary-green);
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-grey);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.close-modal, .close-contact-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.close-contact-modal {
  color: #888;
  top: 15px;
  right: 20px;
  font-size: 30px;
}

.close-modal:hover, .close-contact-modal:hover {
  color: var(--gold);
}


.banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: url("images/cake_tea.jpg") center/cover fixed;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 48, 34, 0.85);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.banner h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.banner p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: 300;
}


.footer {
  background-color: var(--black);
  color: var(--off-white);
  padding: 80px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #aaa;
  margin-bottom: 20px;
  max-width: 350px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--gold);
  transform: translateY(-3px);
}

.footer h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.contact-list li,
.hours-list li {
  margin-bottom: 15px;
  color: #aaa;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-list li i {
  color: var(--gold);
  margin-top: 5px;
}

.hours-list span {
  color: var(--white);
  font-weight: 600;
  min-width: 70px;
  display: inline-block;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 0;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}


.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}
.delay-4 {
  transition-delay: 0.8s;
}

.animate-on-load {
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2rem;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right var(--transition-fast);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}
