/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Lora', serif; /* Elegant body text */
  background-color: #f4f6f8;
  color: #222; /* Slightly darker for readability */
  user-select: none; /* Disable text selection */
}
body, html {
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}
body::selection { background: transparent; }

a { text-decoration: none; color: #1a73e8; }
a:hover { color: #0b47a1; }

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 50px;
}

.hero-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  width: 100%;
}

.hero-text-box {
  background: rgba(255,255,255,0.85);
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: inline-block;
}

.hero-text-box h1 {
  font-family: 'Playfair Display', serif; /* Luxury headings */
  font-weight: 700;
  font-size: 38px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.hero-text-box p {
  font-family: 'Lora', serif; /* Elegant sentences */
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #1a73e8;
  color: #fff;
  font-family: 'Lora', serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.cta-btn:hover {
  transform: translateY(-3px);
  background-color: #155ab6;
}

/* Container & Cards */
.container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}
.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }

h2 { 
  font-family: 'Playfair Display', serif; 
  color: #1a73e8; 
  font-size: 24px; 
  margin-bottom: 15px; 
}
ul { padding-left: 25px; }
ul li { font-family: 'Lora', serif; font-size: 16px; margin-bottom: 12px; line-height: 1.7; letter-spacing: 0.3px; }

/* Amenities Grid */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; }
.amenities-grid li {
  background: #f1f5f9;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}
.amenities-grid li:hover { transform: translateY(-3px); background: #e3f2fd; }

/* Highlights & Pop Text */
.highlight { color: #e53935; font-weight: 600; }
.mega-city, .pop-text {
  font-weight: 700;
  color: #e63946;
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.mega-city:hover, .pop-text:hover {
  animation: popUpDown 0.6s ease-in-out;
}
@keyframes popUpDown {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.25); }
  60%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* Contact Section */
.contact h2 { font-family: 'Playfair Display', serif; margin-bottom: 15px; }
.contact p { font-family: 'Lora', serif; font-size: 18px; font-weight: 500; line-height: 1.7; }

/* Responsive Mobile */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column; /* stack image and text */
    align-items: center;    /* center horizontally */
    justify-content: center;
    text-align: center;
  }

  .hero-img {
    position: static !important; /* remove absolute */
    width: 100%;                 /* stretch full width */
    height: auto;
    transform: none !important;  /* remove previous transform */
    margin: 0 auto 20px;         /* spacing below image */
    display: block;
  }

  .hero-text-box {
    width: 100%;
    max-width: 90%;
    text-align: center;
    margin: 0;
    padding: 15px 20px;
  }

  .hero-text-box h1 { font-size: 24px; }
  .hero-text-box p { font-size: 14px; }
  .cta-btn { padding: 10px 20px; font-size: 14px; }

  h2 { font-size: 20px; }
  ul li { font-size: 15px; }
}
