/* BUTTONS */
.btn {
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-family: var(--auron-font);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: var(--auron-letter-space);
  display: inline-block;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.primary {
  background: var(--auron-base);
  color: var(--auron-white);
}

.primary:hover {
  background: #c88b42;
}

.secondary {
  background: var(--auron-gray);
  color: var(--auron-white);
}

.secondary:hover {
  background: var(--auron-gray2);
}

/* SECTIONS */
.section {
  padding: 60px 5%;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 20px;
  }
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: var(--auron-gray);
  position: relative;
}

@media (max-width: 768px) {
  .section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

.section h2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--auron-base);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* GRIDS */
.grid {
  display: grid;
  gap: 20px;
}

.destinations {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  .destinations {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .destinations {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .destinations {
    grid-template-columns: 1fr;
  }
}

.card {
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  font-weight: 500;
  border-radius: 6px;
  border: unset !important;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .card {
    height: 140px;
  }
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card:hover {
  transform: translateY(-5px);
}

.card span {
  position: relative;
  z-index: 2;
  color: var(--auron-white);
  font-size: 18px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .card span {
    font-size: 16px;
  }
}

/* SERVICES */
/* SERVICES WITH GITTER TEXTURE */
.services {
  background:
    linear-gradient(
      45deg,
      var(--auron-white) 25%,
      transparent 25%,
      transparent 75%,
      var(--auron-white) 75%,
      var(--auron-white)
    ),
    linear-gradient(
      45deg,
      var(--auron-white) 25%,
      var(--auron-border-color) 25%,
      var(--auron-border-color) 75%,
      var(--auron-white) 75%,
      var(--auron-white)
    );
  background-size: 60px 60px;
  background-position:
    0 0,
    30px 30px;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Add subtle overlay to reduce texture intensity */
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--auron-white-rgb), 0.9) 0%,
    rgba(var(--auron-white-rgb), 0.7) 100%
  );
  z-index: 1;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: var(--auron-gray);
  position: relative;
  z-index: 2;
}

.services h2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--auron-base);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-item {
  background: linear-gradient(
    145deg,
    rgba(var(--auron-white-rgb), 0.95) 0%,
    rgba(var(--auron-white-rgb), 0.85) 100%
  );
  padding: 25px 15px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--auron-gray);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid transparent;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(var(--auron-gray-rgb), 0.05),
    0 1px 3px rgba(var(--auron-gray-rgb), 0.1),
    inset 0 0 0 1px rgba(var(--auron-white-rgb), 0.5);
  backdrop-filter: blur(5px);
}

/* Subtle diagonal pattern inside each service item */
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 49.5%,
    rgba(var(--auron-base-rgb), 0.03) 49.5%,
    rgba(var(--auron-base-rgb), 0.03) 50.5%,
    transparent 50.5%
  );
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-item:hover::before {
  opacity: 1;
}

/* Icon styling */
.service-item::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: var(--auron-base);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: 0;
}

.service-item:hover {
  background: linear-gradient(
    145deg,
    rgba(var(--auron-white-rgb), 1) 0%,
    rgba(var(--auron-white-rgb), 0.95) 100%
  );
  border-top: 3px solid var(--auron-base);
  transform: translateY(-5px);
  box-shadow:
    0 15px 25px rgba(var(--auron-gray-rgb), 0.1),
    0 5px 15px rgba(var(--auron-gray-rgb), 0.05),
    inset 0 0 0 1px rgba(var(--auron-white-rgb), 0.8);
}

.service-item:hover::after {
  opacity: 0.1;
  transform: scale(1);
}

.service-item span {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-item:hover span {
  transform: translateX(3px);
}

/* Decorative corner accents */
.service-item .corner {
  position: absolute;
  width: 15px;
  height: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item .corner-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--auron-base);
  border-left: 2px solid var(--auron-base);
}

.service-item .corner-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid var(--auron-base);
  border-right: 2px solid var(--auron-base);
}

.service-item:hover .corner {
  opacity: 0.5;
}

/* IDEAS */
.ideas-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

@media (max-width: 992px) {
  .ideas-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ideas-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1200px) {
  .ideas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ideas-grid {
    grid-template-columns: 1fr;
  }
}

.ideas-content {
  background: var(--auron-gray);
  color: var(--auron-white);
  padding: 30px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .ideas-content {
    padding: 25px;
  }
}

.ideas-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .ideas-content h3 {
    font-size: 22px;
  }
}

.ideas-content p {
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.6;
  position: relative;
  z-index: 10;
}

.ideas-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(128, 128, 128, 0.363);
  z-index: 1;
}

/* FEATURED */
.featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 60px 5%;
  background: var(--auron-border-color);
}

@media (max-width: 992px) {
  .featured {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }
}

.featured-left h2 {
  font-size: 32px;
  color: var(--auron-gray);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .featured-left h2 {
    font-size: 28px;
  }
}

.featured-left span {
  font-style: italic;
  font-weight: 400;
  color: var(--auron-base);
  display: block;
  font-size: 20px;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .featured-left span {
    font-size: 18px;
  }
}

.featured-left p {
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.6;
  position: relative;
  z-index: 10;
}


.featured-right h3 {
  color: var(--auron-gray);
  font-size: 20px;
  margin-bottom: 15px;
}

.featured-right ul {
  list-style: none;
  margin-top: 20px;
}

.featured-right li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: var(--auron-gray);
}

.featured-right li:before {
  content: "•";
  color: var(--auron-base);
  position: absolute;
  left: 0;
  font-size: 20px;
}

.featured-right:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(var(--auron-gray-rgb), 0.7),
    transparent
  );
  z-index: 1;
}

/* HERO SECTION RESPONSIVE */
.hero {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
}

.hero-content {
  background: rgba(var(--auron-white-rgb), 0.95);
  padding: 40px;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  margin: 0 20px;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 30px 20px;
  }
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--auron-gray);
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}
