@font-face {
  font-family: cis;
  src: url(./nocturne-serif-font-family-1736050097-0/NocturneSerifTest-Regular-uploaded-63b633de2e1c7.otf);
}
@font-face {
  font-family: tekst;
  src: url(./Noto_Sans/NotoSans-VariableFont_wdth\,wght.ttf);
}


/* Reset and base styles */

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: tekst;
  color: white;
}

/* Parallax background container */
.parallax {
  background-image: url('./varens.JPG');
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallaxer {
  background-image: url('./varens.JPG');
  height: 50vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 4rem;
}


/* Navigation styles */
header {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: 20px 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  text-shadow: 5px solid black;
}

nav a:hover {
  color: #b9b9b9;
}

/* Hamburger menu icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
}

.hamburger div {
  height: 3px;
  background: rgb(201, 201, 201);
  border-radius: 2px;
}

/* Centered content */
.content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.content h1 {
  font-size: 4rem;
  font-family: cis;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.book-btn {
  padding: 15px 40px;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  background: transparent;
  border: 2px solid white;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;

}

.book-btn:hover {
  background-color:white ;
  color: rgb(72, 72, 72);
}

/* About section styles */
.about-section {
  padding: 60px 20px;
  color: #222;
}

.about-container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}


/* Marquee styles */
.marquee-container {
  width: 100%;
  overflow: hidden;
  color: #334330;
  padding: 20px 0;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 3rem;
  white-space: nowrap;
  position: relative;
  margin-bottom: 65px;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: marqueeAnim 15s linear infinite;
}

.marquee span {
  padding-right: 50px;
  display: inline-block;
}

@keyframes marqueeAnim {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.balk {
  height: 15rem;
  width: auto;
  background-color: #1d3329;
  margin-bottom: 4rem;


}






/* Follow Us Section */
.follow-section {
  max-width: 800px;
  margin: 80px auto;
  text-align: center;
  color: #111;
}

.follow-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}


.social-icons a.instagram {
  background-color: #e1306c;
}

.social-icons a.tiktok {
  background-color: #000000;
}

/* Get In Touch Section */
.contact-section {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
  color: #111;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

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

.contact-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: #111;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.about-company {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  color: #333;
  font-family: tekst;
  text-align: center;
}

.about-company h2 {
  font-size: 2em;
  margin-bottom: 1em;
  color: #1d3329;
}

.about-company p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 40px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-items: center;
}

.about-images video {
  flex: 0 0 50%;
  max-width: 100%;
  box-sizing: border-box;
  height: auto;
  /* border-radius: 10px; */
  box-shadow: 0 10px 20px #000000ac;
}

footer.bottom-bar {
  background-color: #334330;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer.bottom-bar p {
  color: white;
  margin: 0;
}

/* Responsive styles */
@media (max-width: 600px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(32, 32, 32, 0.806);
    flex-direction: column;
    padding-top: 80px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    border-radius: 0;
    z-index: 100;
  }

  nav.active {
    transform: translateY(0);
  }

  nav > .con {
    padding: 20px;
    font-size: 1.5rem;
    text-align: center;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    color: white;
  }

  nav a {
    padding: 20px;
    font-size: 1.5rem;
    color: white;
    text-align: center;
  }

  .hamburger {
    display: flex;
    position: fixed;
    top: 25px;
    right: 30px;
    z-index: 110;
    
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    min-width: auto;
    order: -1; /* Make text appear first */
  }

  /* Fix parallax background on mobile */
  .parallax {
    background-attachment: scroll;
    background-size: cover;
    height: auto;
  }

  /* Fix parallax background on mobile */
  .parallaxer {
    /* background-attachment: scroll;
    background-size: cover; */
    height: 20%;
  }
}

