/* --- Base styles and resets --- */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Exo 2', sans-serif;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: 'Roboto', Arial, sans-serif !important;
  font-weight: 400;
}

:root {
  --accent: #4B7F52;
}

/* --- Header styles (navigation, logo, hamburger) --- */
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 4rem;
  z-index: 1000;
  background: rgba(30, 30, 30, 0.35); /* Increased opacity for better color contrast */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#header .fa-hamburger {
  font-size: 4rem;
  z-index: 10000;
  color: var(--accent);
  cursor: pointer;
  display: none;
}

#header .logo img {
  height: 5rem;
}

#header nav ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
}

#header nav ul li {
  margin-right: 4rem;
}

#header nav ul li a {
  color: #fff;
  font-size: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  text-decoration: none;
}

#header nav ul li a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.header-active {
  background: #333;
  height: 6rem;
  box-shadow: .2rem 0 .5rem #000;
}

.header-active nav ul {
  margin: 0;
}

/* --- Home section styles (hero, video slider, controls) --- */
#home {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  width: 100vw;
  position: relative;
  margin-left: calc(-1 * (100vw - 100%)/2); /* Remove left gap from container-fluid */
  padding: 0 !important;
}

#home .content {
  padding-left: 6.5rem;
}

#home .content h1 {
  font-size: 5rem;
  font-family: 'Poppins', Arial, sans-serif !important;
  font-weight: 800;
  text-shadow: .1rem .1rem .3rem #333;
  color: var(--accent);
  -webkit-text-stroke: 1px #000;
  /* text-stroke: 1px #000; (non-standard, for fallback) */
  text-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 0 2px #000;
}

#home .content h2 {
  font-size: 3.5rem;
  font-family: 'Poppins', Arial, sans-serif !important;
  font-weight: 700;
  text-shadow: .1rem .1rem .3rem #333;
  color: #fff;
  margin: 1rem 0;
}

#home .content p {
  font-size: 1.6rem;
  color: #ccc;
}

#home .content button {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: .2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4rem;
  width: 14rem;
  background: #fff;
}

#home .content button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  height: 100%;
  width: 0%;
  transition: .2s;
  z-index: -1;
}

#home .content button:hover::before {
  width: 100%;
}

#home .video-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1;
  margin: 0;
  padding: 0;
}

#home .video-container .vid {
  position: absolute;
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  display: none;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
}

#home .video-container .vid1 {
  display: block;
}

#home .controls {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 2;
}

#home .controls .dots {
  height: 2rem;
  width: 2rem;
  cursor: pointer;
  background: var(--accent);
  margin: 0 1rem;
}

#home .controls .dots:hover {
  background: #fff;
}

/* --- Special card section styles --- */
#special {
  background: #000;
  min-height: 102vh;
}

#special .heading h1 {
  font-size: 4rem;
  color: #fff;
  padding-top: 7rem;
  margin-bottom: 2rem;
}

#special .heading h1 span {
  color: var(--accent);
}

#special .heading p {
  color: #222;
  color: #ccc !important;
  font-size: 2rem;
  font-family: 'Roboto', Arial, sans-serif !important;
  font-weight: 400;
  margin-bottom: 0;
}

#special .card-container {
  width: 95%;
  margin: 7rem auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

#special .card-container .card {
  height: auto;
  min-height: 28rem;
  width: 30rem;
  background: #fff;
  padding: 1rem;
  margin: 2rem;
  text-align: center;
}

#special .card-container .card img {
  height: 50%;
  width: 100%;
  object-fit: cover;
}

#special .card-container .card video {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 0.7rem;
}

#special .card-container .card p {
  font-family: 'Roboto', Arial, sans-serif !important;
  font-size: 2rem !important;
  font-weight: 400;
  color: #222;
  margin: 2rem 0;
}

#special .card-container .card button {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: .2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 3.5rem;
  width: 14rem;
  background: var(--accent);
  color: #fff;
}

#special .card-container .card button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  height: 100%;
  width: 0%;
  transition: .2s;
  z-index: -1;
}

#special .card-container .card button:hover::before {
  width: 100%;
}

#special .card-container .card button:hover {
  color: #333;
}

#special .card-container .card:hover {
  transform: scale(1.1);
}

/* --- About section styles --- */
#about .heading h1 {
  font-size: 4rem;
  color: #000;
  padding-top: 2rem;
  margin-bottom: 2rem;
}

#about .heading h1 span {
  color: var(--accent);
}

#about .content {
  margin: 5rem auto;
}

#about .content p {
  font-family: 'Roboto', Arial, sans-serif !important;
  font-size: 2rem !important;
  font-weight: 400;
  color: #222;
  line-height: 1.7;
}

#about .content button {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: .2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4rem;
  width: 14rem;
  background: var(--accent);
  color: #fff;
}

#about .content button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  height: 100%;
  width: 0%;
  transition: .2s;
  z-index: -1;
}

#about .content button:hover::before {
  width: 100%;
}

#about .content button:hover {
  color: #333;
}

#about .image img {
  width: 30vw;
}

#about .col-lg-8 {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#about .about-container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about .about-container p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif !important;
  font-weight: 400;
  text-transform: none !important;
  margin-bottom: 2rem;
  text-align: center;
}

#about .about-container .ratio {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem auto;
}

#about .heading {
  margin-bottom: 2rem;
}

#about {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/* --- Dish section styles (if used) --- */
#dish {
  min-height: 100vh;
  width: 100vw;
}

#dish .heading h1 {
  font-size: 4rem;
  color: #000;
  padding-top: 7rem;
  margin-bottom: 2rem;
}

#dish .heading h1 span {
  color: var(--accent);
}

#dish .box-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 1rem auto;
  width: 90%;
}

#dish .box-container .box {
  height: 20rem;
  width: 25rem;
  border-radius: .5rem;
  margin: 2rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 .5rem #333;
}

#dish .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#dish .box-container .box .info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(51, 51, 51, 0.6);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  color: #fff;
  transform: scale(0);
}

#dish .box-container .box .info h3 {
  font-size: 3rem;
}

#dish .box-container .box .info p {
  font-size: 1.3rem;
  border-bottom: 0.2rem solid var(--accent);
  border-top: 0.2rem solid var(--accent);
  margin: 1rem 2rem;
}

#dish .box-container .box .info button {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: .2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4rem;
  width: 14rem;
}

#dish .box-container .box .info button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  height: 100%;
  width: 0%;
  transition: .2s;
  z-index: -1;
}

#dish .box-container .box .info button:hover::before {
  width: 100%;
}

#dish .box-container .box:hover .info {
  transform: scale(1);
}

/* --- Contact section styles --- */
#contact {
  min-height: 100vh;
  width: 100vw;
  background: url(../images/back.png) no-repeat;
  background-size: cover;
  background-position: center;
}

#contact .heading h1 {
  font-size: 4rem;
  color: #000;
  padding-top: 7rem;
  margin-bottom: 2rem;
}

#contact .heading h1 span {
  color: var(--accent);
}

#contact form {
  background: #fff;
  padding-top: 2rem;
  margin: 1rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 2rem #333;
}

#contact form .inputBox {
  position: relative;
  text-align: center;
}

#contact form .inputBox input,
#contact form .inputBox textarea {
  outline: none;
  border: .2rem solid #333;
  border-radius: .2rem;
  margin: 2rem 0;
  padding: 0 1rem;
  background: none;
  height: 4rem;
  width: 90%;
  font-size: 2rem;
}

#contact form .inputBox input:focus ~ h3,
#contact form .inputBox input:valid ~ h3,
#contact form .inputBox textarea:focus ~ h3,
#contact form .inputBox textarea:valid ~ h3 {
  font-size: 1.6rem;
  left: 6%;
  top: -.5rem;
  color: #ff3300;
}

#contact form .inputBox textarea {
  padding: 1rem;
  resize: none;
  height: 20rem;
}

#contact form .inputBox h3 {
  position: absolute;
  top: 3rem;
  left: 7%;
}

#contact form input[type="submit"] {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: .2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4rem;
  width: 12rem;
  margin-bottom: 2rem;
  margin-left: 4%;
  background: var(--accent);
  color: #fff;
}

#contact form input[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  height: 100%;
  width: 0%;
  transition: .2s;
  z-index: -1;
}

#contact form input[type="submit"]:hover::before {
  width: 100%;
}

#contact form input[type="submit"]:hover {
  color: #000000;
  background: #f1f1f1;
  border: 1px solid #333;
}

/* --- Footer styles --- */
#footer {
  background: #191919;
  padding: 0;
  border-top: 2px solid #444;
}
.footer-flex-row {
  width: 100%;
  padding: 2.5rem 3vw 1.5rem 3vw;
  gap: 0;
}
.footer-left {
  gap: 2.5rem !important;
  flex-wrap: wrap;
}
#footer .brand {
  text-align: left;
  margin: 0;
  flex: 0 0 auto;
  gap: 1.2rem;
}
#footer .brand .logo img {
  height: 3.2rem;
}
#footer .brand .icons a {
  font-size: 2.1rem;
  color: #fff;
  background: none;
  margin: 0 0.2rem;
  padding: 0.2rem 0.4rem;
  border-radius: 0.3rem;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#footer .brand .icons a:hover {
  color: var(--accent);
  background: #222;
}
.newsletter-form {
  margin: 0;
  flex: 0 0 auto;
  gap: 0.7rem !important;
}
.newsletter-form input[type="text"] {
  border: 2px solid #fff;
  outline: none;
  background: none;
  height: 3.2rem;
  width: 16rem;
  padding: 0 1rem;
  font-size: 1.3rem;
  color: #fff;
  border-radius: 0.4rem;
  margin-bottom: 0;
  margin-right: 0.2rem;
}
.newsletter-form input[type="submit"] {
  outline: none;
  border: none;
  border-radius: 2rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: .1rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 3.2rem;
  width: 10rem;
  background: var(--accent);
  transition: background 0.2s, color 0.2s;
}
.newsletter-form input[type="submit"]:hover {
  color: #333;
  background: #f1f1f1;
}
#footer .copyright {
  flex: 1 1 0;
  text-align: right;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#footer .copyright h1 {
  font-size: 2rem;
  margin: 0;
  color: #fff;
  font-weight: 400;
}
#footer .copyright h1 span {
  color: var(--accent);
}

/* --- Magnifier slider and area styles --- */
.magnifier-slider-vertical {
  position: relative;
}
.magnifier-area-wrapper-vertical {
  display: block;
}
.magnifier-area {
  position: relative;
  width: 600px;
  height: 380px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  background: #eee;
}
.magnifier-area img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  pointer-events: none;
}
.magnifier-area .mag-blur {
  filter: grayscale(1) blur(3px) brightness(0.7);
  z-index: 1;
}
.magnifier-area .magnifier-glass, .magnifier-area.magnifier-enhanced .magnifier-glass {
  display: none !important;
}
.magnifier-area .mag-color, .magnifier-area .mag-zoom { display: none !important; }
.mag-slider-arrow {
  font-size: 2.5rem;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  user-select: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  outline: none;
}
.mag-slider-arrow:hover, .mag-slider-arrow:focus {
  color: #fff;
  background: var(--accent);
  border-color: #333;
}
.magnifier-area.magnifier-enhanced {
  position: relative;
  width: 600px;
  height: 380px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  background: #eee;
}
.magnifier-area.magnifier-enhanced .mag-blur {
  filter: grayscale(1) blur(10px) brightness(0.6) contrast(0.7) saturate(0.7);
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 1.5rem;
}
.magnifier-area.magnifier-enhanced .mag-clear {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 1.5rem;
  clip-path: circle(0px at 50% 50%);
  transition: clip-path 0.2s, transform 0.2s;
  will-change: transform;
}
.magnifier-area.magnifier-enhanced .magnifier-glass {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  pointer-events: none;
  border: 3px solid var(--accent);
  box-shadow: 0 0 24px 6px #4B7F5280, 0 0 0 2px #fff;
  z-index: 3;
  display: none;
  background: rgba(255,255,255,0.08);
  transition: box-shadow 0.2s, border 0.2s;
}
.magnifier-area.magnifier-enhanced .magnifier-glass.active {
  display: block;
}

/* --- Responsive adjustments --- */
@media (max-width: 900px) {
  .footer-flex-row {
    flex-direction: column;
    align-items: center !important;
    gap: 1.5rem;
    padding: 2rem 2vw 1.5rem 2vw;
  }
  #footer .copyright {
    text-align: center;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .footer-left {
    flex-direction: column;
    align-items: center !important;
    gap: 1.2rem !important;
  }
  .newsletter-form input[type="text"] {
    width: 90vw;
    max-width: 18rem;
  }
}
.d-none {
  display: none !important;
}

#about .row p, #about .col-lg-8 p, #about .text-center p {
  font-size: 2rem !important;
  line-height: 1.7;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif !important;
  font-weight: 400;
  text-transform: none !important;
}

/* --- Magnifier Vertical Slider Styles --- */
.magnifier-slider-vertical {
  position: relative;
}
.magnifier-area-wrapper-vertical {
  display: block;
}
.magnifier-area {
  position: relative;
  width: 600px;
  height: 380px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  background: #eee;
}
.magnifier-area img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  pointer-events: none;
}
.magnifier-area .mag-blur {
  filter: grayscale(1) blur(3px) brightness(0.7);
  z-index: 1;
}
.magnifier-area .magnifier-glass, .magnifier-area.magnifier-enhanced .magnifier-glass {
  display: none !important;
}
.magnifier-area .mag-color, .magnifier-area .mag-zoom { display: none !important; }
.mag-slider-arrow {
  font-size: 2.5rem;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  user-select: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  outline: none;
}
.mag-slider-arrow:hover, .mag-slider-arrow:focus {
  color: #fff;
  background: var(--accent);
  border-color: #333;
}
.magnifier-area.magnifier-enhanced {
  position: relative;
  width: 600px;
  height: 380px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  background: #eee;
}
.magnifier-area.magnifier-enhanced .mag-blur {
  filter: grayscale(1) blur(10px) brightness(0.6) contrast(0.7) saturate(0.7);
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 1.5rem;
}
.magnifier-area.magnifier-enhanced .mag-clear {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 1.5rem;
  clip-path: circle(0px at 50% 50%);
  transition: clip-path 0.2s, transform 0.2s;
  will-change: transform;
}
.magnifier-area.magnifier-enhanced .magnifier-glass {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  pointer-events: none;
  border: 3px solid var(--accent);
  box-shadow: 0 0 24px 6px #4B7F5280, 0 0 0 2px #fff;
  z-index: 3;
  display: none;
  background: rgba(255,255,255,0.08);
  transition: box-shadow 0.2s, border 0.2s;
}
.magnifier-area.magnifier-enhanced .magnifier-glass.active {
  display: block;
}
@media (max-width: 700px) {
  .magnifier-area.magnifier-enhanced, .magnifier-area.magnifier-enhanced img {
    width: 95vw;
    height: 55vw;
    min-width: 220px;
    min-height: 120px;
    max-width: 98vw;
    max-height: 60vw;
  }
  .magnifier-area.magnifier-enhanced .magnifier-glass {
    width: 54px;
    height: 54px;
  }
}
#hidden-details .heading h1 {
    font-size: 4rem;
  color: #000;
  padding-top: 2rem;
  margin-bottom: 2rem;
}
#hidden-details .heading h1 span {
  color: var(--accent);
}
#hidden-details .heading p {
  color: #222;
  font-size: 2rem;
  font-family: 'Roboto', Arial, sans-serif !important;
  font-weight: 400;
  margin-bottom: 0;
}