@import "header.css";
@import "section00.css";
@import "section02.css";
@import "section03.css";
@import "section04.css";
@import "footer.css";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  overflow-x: hidden;
  overflow-y: scroll;
  background: url("../img/section02_background.png") fixed  center no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -webkit-background-image: url("../img/section02_background.png");
  /*-webkit-background: url("../img/section02_background.png") fixed  center no-repeat;*/
  /*background: #2ea8ee;*/
}
section {
  width: 100vw;
  display: flex;
  height: calc(100vh - 100px);
  justify-content: center;
  background: center / contain  url("../img/background.png");
  /*background-size: contain;*/
  -webkit-background-image: url("../img/background.png");
  -webkit-background-size: contain;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #f7941d;
  outline-offset: 2px;
  z-index: 100;
}

/* Skip to content link - hidden by default but focusable */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #844B06;
  color: white;
  padding: 8px;
  z-index: 1000;
  text-decoration: none;
  font-weight: bold;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Main heading styles */
.main-heading {
  position: absolute;
  top: 155px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #231F20;
  z-index: 20;
  font-family: "Cambay Devanagari Bold", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  width: 100%;
}

/* Logo styles for alignment */
#brand {
  display: flex;
  align-items: center;
  z-index: 11;
}

#logo {
  margin-left: 20px;
}

/* Menu toggle styles for alignment */
#menu-toggle {
  z-index: 11;
}

/* Responsive adjustments for main heading */
@media screen and (max-width: 1200px) {
  .main-heading {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 992px) {
  .main-heading {
    font-size: 2rem;
    white-space: normal;
    max-width: 600px;
  }
}

@media screen and (max-width: 768px) {
  .main-heading {
    font-size: 1.5rem;
    max-width: 600px;
  }
}
/*section:nth-child(odd) {*/
/*  background: #fa6c98;*/
/*}*/
/*section:nth-child(even) {*/
/*  background: #79edfc;*/
/*}*/
