*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
}

header {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100px;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  max-width: 150px;
  height: 100px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #6b4c2f;
}

main {
  position: relative;
  top: 100px;
}

section {
  margin-bottom: 80px; 
  padding: 0 40px;
}


#rolunk {
  padding: 0;
  position: relative;
  height: 100vh;
  color: white;
  text-align: center;
  overflow: hidden;
}

.gif-background {
  background-image: url("../images/Dolo.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#rolunk .overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 0;
  backdrop-filter: blur(2px); /* Optional: makes it softer */
}

#rolunk h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

#rolunk p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

#rolunk::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3); /* base layer over the GIF */
  z-index: 0;
}

/* Prices */

#arak {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

#arak h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.price {
  font-size: 1.4em;
  font-weight: bold;
  color: #6b4c2f;
  margin-bottom: 10px;
}


.price-list {
  display: grid;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.price-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.price-item h3 {
  margin-bottom: 10px;
  color: #333;
}

/* Gallery */ 
#galeria {
  margin-bottom: 80px; /* Add space before the footer */
  padding: 0 40px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  height: 250px; /* Uniform height */
  border-radius: 8px;
  object-fit: cover; /* Crop to fit box */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}


.gallery img:hover {
  transform: scale(1.02);
}

#video {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

#video h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

#video p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}


/* Footer */
footer {
  position: relative;
  top: 100px;
  background-color: #111C26;
  color: #F2F2F2;
  padding: 40px 20px 20px;
  font-size: 0.95em;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items: center;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #D9D1B8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #F2F2F2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #BF8C80;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

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

.footer-bottom {
  text-align: center;
  border-top: 1px solid #61788C;
  padding-top: 15px;
  font-size: 0.9em;
  color: #aaa;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
  }

}
