/* --- General Page Styling --- */
body { 
  font-family: Arial, sans-serif; 
  margin: 0; 
  padding: 0; 
  background: #f5f5f5;     
  color: #333;              
}

/* --- Navigation Bar --- */
nav { 
  background: #2c3e50;       
  color: #fff; 
  padding: 10px 20px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav a { 
  color: #fff; 
  text-decoration: none; 
  font-weight: bold;
  margin-left: 15px;
}

nav a:hover { 
  color: #e67e22;            
}

/* --- Buttons --- */
.button, .pay-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff6f61;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin: 10px 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover, .pay-btn:hover {
  transform: scale(1.05);
  background-color: #ff4a3d;
}

/* --- Logo --- */
.logo, .header-logo { 
  height: 50px;              
}

.header-logo {
  display: block;
  margin: 0 auto 20px; 
  height: 100px;              
}

/* --- Header Section --- */
header { 
  text-align: center; 
  padding: 50px 20px; 
  background: #ecf0f1;        
}

/* --- Gallery Grid --- */
.grid { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
  padding: 20px; 
  justify-content: center; 
}

.grid img { 
  width: 45%;
  max-width: 200px;
  border-radius: 10px; 
  cursor: pointer; 
  border: 2px solid #2c3e50; 
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s;
}

.grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  border-color: #e67e22;
}

/* --- Lightbox --- */
.lightbox { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0,0,0,0.85); 
  justify-content: center; 
  align-items: center; 
  z-index: 999; 
}

.lightbox-content { 
  max-width: 90%; 
  max-height: 80%; 
}

.close, .prev, .next { 
  position: absolute; 
  color: #fff; 
  font-size: 2em; 
  cursor: pointer; 
  user-select: none; 
}

.close { top: 20px; right: 30px; }
.prev { top: 50%; left: 30px; transform: translateY(-50%); }
.next { top: 50%; right: 30px; transform: translateY(-50%); }


}

/* --- About Section --- */
.about-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.about-photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.about-text {
  max-width: 500px;
  text-align: left;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* --- Pricing Section --- */
.luxury-pricing .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.luxury-pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.starting-price {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card.tier {
  background: #fff;
  border-radius: 12px;
  border: 3px solid #ccc;
  padding: 2rem 1.5rem;
  width: 250px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card.tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Colored borders for each tier */
.card.tier.mini { border-color: #6cace4; }
.card.tier.standard { border-color: #ffb347; }
.card.tier.premium { border-color: #ff6f61; }

/* Ribbon */
.ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff6347;
  color: #fff;
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 4px;
  transform: rotate(15deg);
}

/* Tier title and price */
.card.tier h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: #222; }
.tier-price { font-size: 1.3rem; font-weight: bold; margin-bottom: 1rem; color: #333; }

/* Tier features */
.card.tier ul { list-style: none; padding: 0; text-align: left; }
.card.tier ul li { margin: 0.5rem 0; font-size: 0.95rem; }
.icon { margin-right: 0.5rem; }

/* Booking info */
.booking-info {
  margin-top: 2rem;
  text-align: left;
  display: inline-block;
}

.booking-info h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.booking-info ul { list-style: disc; padding-left: 1.5rem; }
.booking-info ul li { margin: 0.5rem 0; font-size: 1rem; }
/* --- Contact Section --- */
#contact { 
  padding: 50px 20px; 
  background: #34495e;        
  color: #ecf0f1;             
}

/* Container for form and info side by side */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}
/* --- Request More Info Form (Compact Version) --- */
#request-info {
  padding: 30px 10px; /* smaller padding */
  background: #fefefe;
  text-align: center;
}

#request-info h2 {
  font-size: 1.6rem; /* smaller title */
  color: #222;
  margin-bottom: 0.5rem;
}

#request-info p {
  font-size: 0.9rem; /* smaller description */
  color: #555;
  margin-bottom: 1.2rem;
}

/* Container for form */
.request-container {
  max-width: 450px; /* more compact */
  margin: auto;
}

/* Form styling */
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px; /* tighter spacing */
  background: #fff;
  padding: 1.8rem; /* smaller padding */
  border-radius: 10px;
  border: 2px solid #ffb347;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1); /* subtle shadow */
}

#contact-form label {
  text-align: left;
  font-weight: bold;
  color: #333;
  margin-bottom: 2px;
  font-size: 0.9rem; /* smaller label font */
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 9px; /* slightly smaller inputs */
  font-size: 0.95em; /* smaller text */
  border-radius: 5px;
  border: 1px solid #ccc;
}

#contact-form textarea {
  resize: vertical;
  min-height: 80px; /* smaller textarea */
}

#contact-form button {
  width: 100%;
  padding: 11px; /* smaller button */
  font-size: 1em;
  font-weight: bold;
  color: #fff;
  background-color: #e67e22;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

#contact-form button:hover {
  background-color: #d35400;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  #request-info {
    padding: 20px 10px;
  }
  .request-container {
    width: 95%;
  }
  #contact-form {
    padding: 1.5rem;
    gap: 10px;
  }
  #contact-form label {
    font-size: 0.85rem;
  }
  #contact-form input,
  #contact-form textarea,
  #contact-form button {
    font-size: 0.9em;
    padding: 8px;
  }
}
}
/* Contact Me Info (landscape style) */
.contact-info {
  flex: 1 1 450px; /* landscape card */
  background: #2c3e50;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-info h3 {
  color: #e67e22;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #ff6f61;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Social Links inside contact-info */
.contact-info .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.contact-info .social-links a {
  background: #ff6f61;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.contact-info .social-links a:hover {
  background: #ff4a3d;
}

/* --- Responsive Adjustments --- */
@media screen and (max-width: 768px) {
  /* Stack vertically on smaller screens */
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  #contact-form, .contact-info {
    width: 90%;
  }
}


}
/* --- Responsive --- */
@media screen and (max-width: 600px) {
  .about-text { text-align: center; }
  .pricing-tiers { flex-direction: column; align-items: center; }
  .grid img { width: 80%; max-width: 200px; }
  nav { flex-direction: column; align-items: flex-start; }
}