body {
  margin: 0;
  background: #2a2f23;
  font-family: 'Inter', sans-serif;
  color: #f4ecd8;
}

/* NAVBAR */
.custom-nav {
  background: rgba(20,25,18,0.9);
  padding: 15px 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  color: #f4ecd8;
  font-size: 20px;
}

.nav-link {
  color: #f4ecd8;
  margin-left: 25px;
  font-size: 14px;
}

.nav-link:hover {
  color: #e5cba3;
}

/* MARQUEE */
.marquee {
  margin-top: 70px;
  border-top: 1px solid #f4ecd8;
  border-bottom: 1px solid #f4ecd8;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 18s linear infinite;
}

.marquee span {
  padding: 0 25px;
  font-size: 13px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* HERO */
.hero {
  padding: 100px 0;
  background: radial-gradient(circle at top,#2a2f23, #0e0a0d);
}

.image-area {
  position: relative;
}

.img-main {
  width: 70%;
}

.img-float {
  width: 45%;
  position: absolute;
  bottom: -40px;
  right: 20px;
}

/* TEXT */
.text-area h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.1;
  text-align: center;
}

.text-area p {
  margin-top: 15px;
  font-size: 14px;
  color: #e5cba3;
  text-align: center;
}

.btn-join {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 30px;
  background: #f4ecd8;
  color: #000;
  border-radius: 25px;
  font-size: 13px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .text-area h1 {
    font-size: 48px;
  }

  .image-area {
    margin-bottom: 60px;
  }
}

@media (max-width: 576px) {
  .img-main {
    width: 100%;
  }

  .img-float {
    width: 60%;
    right: 0;
  }

  .text-area h1 {
    font-size: 38px;
  }
}

body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #0f0b0e;
}

.latin-section {
  padding: 80px 0;
   background: radial-gradient(circle at top,#2a2f23, #0e0a0d);
  color: #f5f5f5;
}

.box {
  padding: 60px 50px;
  text-align: center;
  min-height: 300px;
}

.box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.box h6 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #e5cba3;
  margin-bottom: 25px;
}

.box p {
  font-size: 14px;
  line-height: 1.9;
  color: #ddd;
}

/* Borders like image */
.border-end {
  border-right: 1px solid rgba(255,255,255,0.3) !important;
}

.border-bottom {
  border-bottom: 1px solid rgba(255,255,255,0.3) !important;
}

/* Button */
.discover-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #f6e7d2;
  color: #000;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s ease;
}

.discover-btn:hover {
  background: #e5cba3;
  color: #000;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .border-end {
    border-right: none !important;
  }

  .box {
    padding: 40px 25px;
  }
}

/* ===== Luxury Animations ===== */

/* Initial hidden state */
.box {
  opacity: 0;
  transform: translateY(40px);
  animation: boxFadeUp 1.2s ease forwards;
}

/* Delay for each box */
.box:nth-child(1) { animation-delay: 0.2s; }
.box:nth-child(2) { animation-delay: 0.4s; }
.box:nth-child(3) { animation-delay: 0.6s; }
.box:nth-child(4) { animation-delay: 0.8s; }

/* Fade Up Animation */
@keyframes boxFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Luxury Effect */
.box {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.box:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

/* Text glow on hover */
.box:hover h3 {
  text-shadow: 0 0 12px rgba(229,203,163,0.4);
}

/* Button Luxury Animation */
.discover-btn {
  position: relative;
  overflow: hidden;
}

.discover-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transition: 0.6s;
}

.discover-btn:hover::after {
  left: 100%;
}

/* Subtle floating animation */
@keyframes floatSoft {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.discover-btn {
  animation: floatSoft 4s ease-in-out infinite;
}

.lux-footer {
   background: radial-gradient(circle at top,#2a2f23, #0e0a0d);
  color: #f5f0e6;
  padding: 80px 0 30px;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.brand img {
  width: 40px;
}

.brand span {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}

/* Left */
.footer-left p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #e5dcc8;
}

.address {
  margin-top: 20px;
  line-height: 1.7;
}

/* Divider */
.footer-divider {
  width: 2px;
  height: 250px;
  background: rgba(255,255,255,0.3);
}

/* Right */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.footer-right span {
  font-size: 14px;
  color: #e5dcc8;
  text-decoration: none;
  transition: all 0.4s ease;
}

.footer-right span:hover {
  color: #fff;
  letter-spacing: 0.5px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 50px;
  padding-top: 20px;
  font-size: 12px;
  text-align: right;
  color: #cfc6b4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-divider {
    display: none;
  }

  .footer-right {
    margin-top: 40px;
  }

  .footer-bottom {
    text-align: center;
  }
}

.contact-lux {
   background: radial-gradient(circle at top,#2a2f23, #0e0a0d);
  padding: 120px 0;
  color: #f5f0e6;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

/* LEFT */
.contact-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 13px;
  letter-spacing: 1px;
  color: #e5dcc8;
}

.contact-text p {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.8;
  color: #ddd;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-row {
  display: flex;
  gap: 40px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field.full {
  width: 100%;
}

.field label {
  font-size: 13px;
  margin-bottom: 10px;
  color: #e5dcc8;
}

.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding: 8px 0;
  color: #fff;
  font-size: 14px;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #fff;
}

/* BUTTON */
.submit-btn {
  align-self: flex-start;
  padding: 10px 40px;
  background: #f5f0e6;
  color: #000;
  border: none;
  border-radius: 25px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.4s ease;
}

.submit-btn:hover {
  background: #e5dcc8;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-text h1 {
    font-size: 46px;
  }
}

@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    gap: 30px;
  }

  .contact-text h1 {
    font-size: 38px;
  }
}

.about-section {
  background: radial-gradient(circle at top,#2a2f23, #0e0a0d);
  color: #f5f0e6;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Title */
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  margin-bottom: 40px;
}

/* Text */
.about-text p {
  max-width: 560px;
  margin: auto;
  font-size: 15px;
  line-height: 1.9;
  color: #ddd;
}

/* Images */
.about-img-left {
  max-width: 100%;
}

.about-img-right {
  max-width: 220px;
}

/* Button */
.about-btn {
  background: #f5f0e6;
  color: #000;
  border-radius: 25px;
  padding: 10px 35px;
  font-size: 13px;
  transition: all 0.4s ease;
}

.about-btn:hover {
  background: #e5dcc8;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .about-title {
    font-size: 48px;
  }

  .about-text p {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 40px;
  }
}


.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(244,236,216,0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(20,25,18,0.95);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
  }

  .nav-link {
    padding: 10px 0;
    font-size: 15px;
  }
}
