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

body {
  font-family: "Archivo", sans-serif;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-btn {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 2.75rem;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: end;
  align-items: end;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.1); 
}

.hero-btn a {
  border: 1px solid white;
  backdrop-filter: blur(5px);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-btn a:hover {
  background-color: white;
  color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-btn {
    justify-content: center;
  }
  
  .hero-text {
    padding: 1.25rem;
  }
}

/* Logo */
.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
  z-index: 1000;
  pointer-events: none;
}

.logo img {
  width: clamp(300px, 50vw, 800px);
  height: auto;
  display: block;
}

.logo.scrolled {
  top: 20px !important;
  left: 50% !important;
  transform: translate(-50%, 0) !important;
}

.logo.scrolled img {
  width: 300px;
  height: auto;
}

/* Gallery Section */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  padding: 1.125rem;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    padding: 0.75rem;
  }
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.btn {
  text-align: center;
  margin: 40px 0;
}

.btn a {
  background-color: black;
  color: white;
  padding: 20px 40px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn a:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Footer Section */
.site-footer {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.125rem;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.site-footer .footer-logo {
  width: 250px;
  height: auto;
}

@media (max-width: 768px) {
  .site-footer .footer-logo {
    width: 200px;
  }
}

.site-footer a {
  text-decoration: none;
}

.footer-links {
  width: 80%;
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    width: 100%;
    gap: 3rem;
    padding: 0 1.125rem;
  }
}

.footer-links h4 {
  margin-bottom: 1rem;
  text-align: start;
  text-transform: uppercase;
}

.footer-links .footer-list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.footer-links .footer-list li {
  list-style: none;
  text-align: start;
  font-size: 13px;
}

.footer-links .footer-list li a {
  line-height: 1.6;
  color: #333;
  font-size: 13px;
}