/* Reset and Base Styles */
@font-face {
  font-family: "Eurostile";
  src: url("./eurostile.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Eurostile', sans-serif;
  color: #333;
  background: #EEF1BD;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  
}

/* Header & Hero Background */
.hero-background {
  position: relative;
  background: url('jaggery.png') no-repeat center center/cover;
  height: 100vh;
  min-height: 600px;
}

/* Header */
header {
  padding: 0px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: rgba(0,0,0,0);
}

header.scrolled {
  background-color: rgba(192, 48, 0,1);
}

.logo-container {
  display: flex;
  justify-content:left;
  align-items: center;
}

.logo {
  /* background: rgba(192, 48, 0, 0.8); */
  padding: 15px 20px;
  border-radius: 4px;
  text-align: center;
}

.logo img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 100px;
    max-height: min-content;
}

.logo h1 {
  font-size: 1.8em;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.tagline {
  font-size: 1.4em;
  font-weight: 300;
  color: #000;
  margin-top: 10px;
  text-align: center;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  /* max-width: 50%; */
  padding: 50px ;
}

.hero-content h2 {
  font-size: 2.1em;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}


.container-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
}


.arrow-container {
  position: relative;
  width: 24px;
  height: 24px;
  
}

.chevron {
  position: absolute;
  width: 30px;
  height: 5px;
  color: #fff;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
  color: #fff;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
  color: #fff;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
  color: #fff;
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
  color: #fff;
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(50px);
  }
  100% {
    opacity: 0;
    transform: translateY(60px) scale3d(0.5, 0.5, 0.5);
  }
}



/* Coming Soon Banner */
.coming-soon {
  background: #BBD686;
  color: #C03000;
  padding: 15px;
  text-align: center;
  font-size: 1.6em;
  font-weight: 600;
}

/* Content Sections */
section {
  padding: 60px 0;
}

.content {
  background: #fff;
  padding: 30px;
  margin: 15px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  max-width: 55%;
}

.content h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  font-weight: 600;
  color: #C03000;
}

.content p, .content ul {
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: 300;
  color: #353434;
}

.content a {
  margin-bottom: 15px;
  font-weight: 300;
  color: #353434;
}

.content ul {
  list-style-type: disc;
  padding-left: 20px;
}


.social-media a {
  margin: 0 10px;
  font-size: 1.2em;
  color: #353434;
  text-decoration: none;
}

.social-media a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #BBD686;
  color: #C03000;
  text-align: center;
  padding: 20px 0;
}

footer p {
  font-size: 1.2em;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo h1 {
    font-size: 1.5em;
  }
  
  .hero-content {
    max-width: 80%;
  }
  
  .hero-content h2 {
    font-size: 2em;
  }
  
  .content {
    padding: 20px;
  }
  
  .logo {
    padding: 10px 15px;
  }
  
  .logo img {
    height: 80px; /* Adjust logo height for mobile */
  }
  
  .tagline {
    font-size: 1em;
  }

  .container-hero {
    width: 80%;
  }
}