/* Packages Page Styles */

/* Basic Reset and Body Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #fafafa;
}

/* Typography */
.hero-title, .section-title, .cta-title, .package-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #8B4513;
}

/* Hero Section */
.packages-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(139,69,19,0.4), rgba(139,69,19,0.4)), 
              url('https://images.pexels.com/photos/35467018/pexels-photo-35467018.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.packages-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #ffff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: #D4AF37;
  margin: 0 auto 2rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.hero-btn {
  display: inline-block;
  background: #D4AF37;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #D4AF37;
}

.hero-btn:hover {
  background: transparent;
  color: #D4AF37;
  text-decoration: none;
}

/* Packages Section */
.packages-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.packages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(212, 175, 55, 0.03) 2px,
    rgba(212, 175, 55, 0.03) 4px
  );
  pointer-events: none;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: #8B4513;
  text-align: center;
  position: relative;
  z-index: 2;
  font-weight: 300;
  letter-spacing: 2px;
}

.section-title::before,
.section-title::after {
  content: '❦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #D4AF37;
  font-size: 1.5rem;
}

.section-title::before {
  left: -60px;
}

.section-title::after {
  right: -60px;
}

.section-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 4rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  font-style: italic;
}

/* Luxury Menu Layout */
.luxury-menu {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 2;
}

.luxury-menu::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  pointer-events: none;
}

.menu-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px 0;
  transition: all 0.3s ease;
  position: relative;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(139, 69, 19, 0.02));
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -20px;
  margin-right: -20px;
  border-radius: 15px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 15px;
  position: relative;
}

.menu-header::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #D4AF37 0px,
    #D4AF37 3px,
    transparent 3px,
    transparent 8px
  );
  opacity: 0.6;
}

.menu-title {
  font-size: 1.8rem;
  color: #8B4513;
  font-style: italic;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-badge {
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.menu-badge.best-value {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.menu-badge.exclusive {
  background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.menu-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.menu-price small {
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
  font-style: normal;
}

.menu-time {
  color: #8B4513;
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: italic;
  opacity: 0.8;
}

.menu-time i {
  color: #D4AF37;
  font-size: 1rem;
}

.menu-description {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
  max-width: 70%;
}

.menu-features {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
}

.menu-feature {
  color: #666;
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
  font-style: italic;
}

.menu-feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-style: normal;
}

.menu-action {
  text-align: right;
  margin-top: 20px;
}

.luxury-btn {
  background: linear-gradient(135deg, #8B4513, #A0522D);
  color: white;
  padding: 12px 35px;
  border: 2px solid #8B4513;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.4s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.luxury-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.luxury-btn:hover {
  background: transparent;
  color: #8B4513;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.luxury-btn:hover::before {
  left: 100%;
}
/* What's Included Section */
.included-section {
  padding: 80px 0;
  background: #fff;
}

.included-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.included-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.included-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D4AF37, #8B4513);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.included-icon i {
  font-size: 2rem;
  color: white;
}

.included-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #8B4513;
  margin-bottom: 15px;
  font-style: italic;
}

.included-item p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

/* Call to Action Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(69, 53, 41, 0.7)), 
              url('../images/pack.png') center/cover fixed;
  color: white;
  text-align: center;
  position: relative;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-buttons .btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 0 10px;
}

.cta-buttons .btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: #8B4513;
  text-decoration: none;
}

.cta-buttons .btn-primary {
  background: #D4AF37;
  border: 2px solid #D4AF37;
  color: white;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  border-color: #D4AF37;
  color: #D4AF37;
  text-decoration: none;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-info {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-item {
  text-align: center;
  padding: 20px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4AF37, #8B4513);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #8B4513;
  margin-bottom: 10px;
  font-style: italic;
}

.contact-item p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .luxury-menu {
    padding: 50px 40px;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .section-title::before,
  .section-title::after {
    display: none;
  }
  
  .menu-description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .luxury-menu {
    padding: 40px 30px;
  }
  
  .menu-item {
    padding: 30px 0;
  }
  
  .menu-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .menu-header::after {
    display: none;
  }
  
  .menu-title {
    font-size: 1.6rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .menu-badge {
    align-self: flex-start;
  }
  
  .menu-price {
    font-size: 1.6rem;
  }
  
  .menu-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .menu-action {
    text-align: center;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons .btn {
    display: block;
    margin: 10px 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .luxury-menu {
    padding: 30px 20px;
  }
  
  .menu-item {
    padding: 25px 0;
  }
  
  .menu-title {
    font-size: 1.4rem;
  }
  
  .menu-price {
    font-size: 1.4rem;
  }
  
  .luxury-btn {
    padding: 10px 25px;
    font-size: 0.8rem;
  }
}
