
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fdfeff;
  color: #080808;
  margin: 0;
  padding: 3vw 6vw;
  min-height: 100vh;
  line-height: 1.6;
  
}

:root {
  --main-color: #e48b07;
}

header {
  background: var(--main-color);
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(100,100,100,0.07);
  border-radius: 8px;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
  padding: 15px;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

header nav a:hover {
  color: #ffe082;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 2rem;
  box-sizing: border-box;
}

section {
  margin-bottom: 2rem;
}

h2 {
  color: var(--main-color);
  margin-top: 0;
}

button, .button {
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  margin: 0.5rem 0.5rem 0.5rem 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(100,100,100,0.07);
  display: inline-block;
}

button a, .button a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  height: 100%;
}

button:hover, .button:hover {
  background: #fa8601;
  transform: translateY(-2px) scale(1.03);
}

footer {
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  color: #e48b07;
  font-size: 0.95rem;
  margin-top: 2rem;
  background: #fff;
  border-top: 1px solid #eee;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
  main {
    max-width: 95vw;
    padding: 1.2rem;
  }
}

@media (max-width: 600px) {
  header {
    padding: 1.2rem 0 0.7rem 0;
  }
  header h1 {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }
  header nav ul {
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.5rem;
  }
  main {
    padding: 0.7rem;
    border-radius: 0;
    box-shadow: none;
  }
  button, .button {
    width: 100%;
    margin: 0.5rem 0;
    font-size: 1.1rem;
  }
  section {
    margin-bottom: 1.2rem;
  }
  p {
    font-size: 1rem;
  }
  footer {
    font-size: 0.9rem;
    padding: 1rem 0 0.7rem 0;
  }
}

.center-text {
  text-align: center;
  margin: 1rem 0;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

.center-text p {
  text-align: justify;
}

aside {
  background: #ffe5c2;
  font-style: italic;
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(228,139,7,0.08);
}

aside h3 {
  font-style: normal;
  margin-top: 0;
  color: #e48b07;
}

.aside-img {
  display: block;
  margin: 1rem auto;
  max-width: 220px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(228,139,7,0.12);
  background: #fff;
}



.img-big {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.img-big img {
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(100,100,100,0.10);
  background: #fff;
  transition: transform 0.2s;
  object-fit: contain;
}

.img-big img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 4px 24px rgba(228,139,7,0.18);
}

@media (max-width: 500px) {
  .img-big img {
    max-width: 320px; 
  }
}

@media (min-width: 501px) and (max-width: 700px) {
  .img-big img {
    max-width: 300px; 
  }
}

@media (min-width: 701px) {
  .img-big img {
    max-width: 550px; 
  }
}



.img-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.img-row img {
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(100,100,100,0.10);
  background: #fff;
  transition: transform 0.2s;
  object-fit: contain;
}

.img-row.small img {
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(100,100,100,0.10);
  background: #fff;
  transition: transform 0.2s;
  object-fit: contain;
}



.img-row.small {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  gap: 1rem;
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: 1rem; 
  scroll-behavior: smooth;
}


.img-row img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 4px 24px rgba(228,139,7,0.18);
}

#scrollBottomBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background: #e48b07;
  color: #fff;
  cursor: pointer;
  padding: 0.7rem 1rem;
  border-radius: 50%;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(100,100,100,0.15);
  transition: background 0.2s;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollBottomBtn:hover {
  background: #ffb84d;
}

@media (max-width: 600px) {
  #scrollBottomBtn {
    width: 48px;
    height: 48px;
    padding: 0;
    font-size: 1.2rem;
  }
}


@media (min-width: 900px) {
  .img-row.small img {
    max-width: 120px;
  }
}

@media (min-width: 1200px) {
  .img-row.small img {
    max-width: 150px;
  }
}

@media (max-width: 500px) {
  .img-row.small {
    flex-direction: row !important;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .img-row.small img {
    flex: 0 0 auto;
    max-width: 95px; 
  }
}



.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem;
  justify-items: center;
  margin: 2rem 0;
}

.video-grid video {
  width: 100%;
  max-width: 77%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(100,100,100,0.07);
  background: #000;
}

@media (max-width: 1000px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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




.image-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.marquee-track img {
  max-width: 95px;
  height: auto;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(100,100,100,0.10);
  background: #fff;
  object-fit: contain;
  margin-right: 1.2rem; 
}


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