@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}

.header {
  text-align: center;
  padding: 80px 20px 40px;
}

.title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.15em;
}

.title1 {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.15em;
}

.subtitle {
  margin-top: 10px;
  font-size: 2rem;
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-align: center;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav a {
  display: flex;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

.main {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section {
  margin-bottom: 60px;
  text-align: center;
}

.section h2 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.section p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.75rem;
  opacity: 0.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content {
  margin-top: 25px;
  height: 300;
  width: 200;
  padding: 60px 20px;
  overflow-x: hidden;
}

#unique-image {
    display: block;
    opacity: 80%;
    margin-left: auto;
    margin-right: auto;
    width: 850px;
    height: 600px;

}

.poles {
  margin-top: 10px;
  font-size: 2rem;
  opacity: 0.9;
  text-align: center;
  letter-spacing: 0.1em;
  padding-bottom: 0px;

}

section.m {
  margin-bottom: 60px;
  text-align: left;
  
}

.sub-heading {
  padding : min(5em, 8%);
  font-size: clamp(1.8, calc(7vw + 1rem), 5rem);
  text-align: justify;
}
.carousel {
  width: 100%;
  height: 320;
  overflow: hidden;
}

.track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.track img {
  width: 500px;
  height: 400px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 10px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.pictures-container {
  padding-left: 0;
  padding-right: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.picture-slider-wrapper {
  position: relative;
  max-width: 24rem;
  margin: 0;
}

.echo-slider {
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;                 
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  background-color: #fff;            
  box-shadow: inset 0 0 0 1px #2a2a2a;
  border-radius: 0.5rem;
}

.echo-slider::-webkit-scrollbar {
  display: none;
}

.echo-slider img {
  flex: 0 0 100%;                  
  width: 100%;
  height: 100%;
  padding: 0.2rem;                    
  object-fit: contain;              
  background-color: #ffffff;  
  border: 1px solid #dbdbdb;   
  box-sizing: border-box;
  border: 1px solid #f7f7f7;
  border-radius: 6px;
  scroll-snap-align: start;
}

.pictures-nav {
  display: flex;
  column-gap: 0.5rem;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  overflow-x: hidden; 
}

.pictures-nav a {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #504343;
  border-radius: 50%;
  opacity: 0.75;
  transition: opacity ease 250ms;
}
.pictures-nav a:hover{
  opacity: 1;
}

.official-links {
  text-align: center;
  margin: 30px 0;
}

.official-links h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: .9rem;
  letter-spacing: 0.1em;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px; 
  max-width: 600px;
  margin: 0 auto;
}

.links-grid a {
  display: block;
  padding: 10px 15px;
  background-color: #161d20; 
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.links-grid a:hover {
  background-color: #444;
}

@media (max-width: 768px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
}


.background-video,
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  object-fit: cover;
  z-index: -3;
}

.background-video {
  display: block;
  opacity: 0.7;
}

.background-image {
  display: none;
  overflow-x: hidden;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  opacity: 0.2;
  z-index: -2;
}

/*desktops*/
@media (max-width: 1440px) {
  .background-video {
    display: block;
  }

  .background-image {
    display: none;
  }

  .background-overlay {
    opacity: 0.1;
  }
}
/*Tablet*/
@media (max-width: 1024px) {
  .background-video {
    display: none;
  }

  .background-image {
    display: block;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
  }

  .background-overlay {
    opacity: 0.4;
  }
}

/* phone */
@media (max-width: 600px) {
  .background-video {
    display: none;
  }

  .background-image {
    display: block;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
  }

  .background-overlay {
    opacity: 0.4;
  }
}


.background-static {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -3;
  overflow-x: hidden;
}

@media (max-width: 100vw){
  .background-static {
    display: block;
    opacity: 0.4;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
  }
}