/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Dark mode styles *//* === DARK MODE STYLES === */
body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

body.dark-mode nav {
  background-color: #1f1f1f;
}

body.dark-mode nav ul li a {
  color: #90caf9;
}

body.dark-mode .hero {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

body.dark-mode .btn {
  background-color: #333;
  color: white;
  border: 1px solid #ccc;
}


body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #003366;
  padding: 15px 30px;
}

nav h1 {
  color: #fff;
  font-size: 24px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffcc00;
}

.hero {
  /*background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center/cover;*/
  color: white;
  padding: 100px 20px;
  height: 900px;
  text-align: center;
  padding-top: 20%;
}

.hero h2 {
  font-size: 48px;
 margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 25px;
  background: #ffcc00;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #e6b800;
}

.page-header {
  text-align: center;
  padding: 40px 20px 20px;
}

.page-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #003366;
}

.page-header p {
  font-size: 18px;
  color: #666;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 30px;
  max-width: 1200px;
  margin: auto;
  
}

.des{
  background: url(https://assets.thehansindia.com/h-upload/2019/12/27/248830-worldtour.webp);
  background-size: cover;
  
}
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  font-size: 22px;
  color: #003366;
  margin: 15px 0 10px;
}

.card p {
  padding: 0 15px 20px;
  font-size: 16px;
  color: #555;
}


/*booking*/
.new{
  background: url('https://c.ndtvimg.com/2022-04/b7792gq8_airflights_625x300_11_April_22.jpg?downsize=545:307') no-repeat center center fixed;
  background-size: cover;
}
.booking-form {
  max-width: 600px;
  margin: 30px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-form form {
  display: flex;
  flex-direction: column;
}

.booking-form label {
  margin: 10px 0 5px;
  font-weight: bold;
  color: #003366;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  resize: vertical;
}

.booking-form button {
  margin-top: 20px;
  cursor: pointer;
}

/* Hero Banner */
.ab{
  background: url(https://hrinternational.in/blog/wp-content/uploads/2024/06/Cheap-And-Best-Tour-Travel-Agents-in-Delhi-India.jpg)no-repeat center center fixed;
}
.about-hero {
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero .overlay {
  background: rgba(0, 0, 0, 0.096);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
}

.about-hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 18px;
}

/* Enhanced About Section */
.about-enhanced {
  
  padding: 40px 20px;
}

.about-box {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-box h3 {
  color: #003366;
  margin-top: 20px;
}

.about-box p, .about-box li {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.about-box ul {
  padding-left: 20px;
  margin-top: 10px;
}



/* Contact Hero Banner */
.contact-hero {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-hero .overlay {
  color: black;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 0;
}

.contact-hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 18px;
}

/* Contact Section */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  background: #f9f9f9;
}

.contact-form,
.contact-info {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  color: #003366;
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #003366;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #003366;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.contact-info h3 {
  color: #003366;
  margin-bottom: 10px;
}

.contact-info p,
.contact-info a {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}


/* Maldives Hero Section */
/* Maldives Elegant Layout */
.maldives-body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url(https://www.sunsiyam.com/media/5k3iw5a5/ssiv_general_04.jpg?width=782&height=521&mode=max);
  background-size: cover;
}

.maldives-header {
  background: url('') center/cover no-repeat;
  height: 280px;
  color: white;
  text-align: center;
  padding-top: 90px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.maldives-header h2 {
  font-size: 42px;
  margin: 0;
}

.maldives-header p {
  font-size: 18px;
  margin-top: 10px;
}

.maldives-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;
}

.maldives-card {
  position: relative;
  width: 320px;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.maldives-card:hover {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  color: white;
  width: 100%;
  padding: 15px;
  backdrop-filter: blur(3px);
}

.overlay h3 {
  margin: 0;
  font-size: 20px;
}

.overlay p {
  font-size: 14px;
  margin-top: 5px;
}





/* Paris Hero Section */
/* Paris Background */
.paris-bg {
  background: url('https://i.etsystatic.com/17358183/r/il/f4cfc5/3640173906/il_fullxfull.3640173906_398q.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

/* Hero Section */
.paris-hero {
  padding-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.paris-hero .overlay {
  background: rgba(0, 0, 0, 0.205);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
}

.paris-hero h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.paris-hero p {
  font-size: 18px;
}

/* Flex Layout for Right Alignment */
.destination-details-flex {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.destination-content {
  max-width: 900px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Text Styling */
.destination-content h3 {
  color: #003366;
  margin-top: 20px;
}

.destination-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Attractions Grid */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  
  margin-top: 20px;
}

.attraction {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.attraction img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 30px;
  background-color: #003366;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #0055a5;
}



/* Bali Background and Theme */
.bali-body {
  background-color: #fdf8f2;
  font-family: 'Segoe UI', sans-serif;
}

/* Header Image */
.bali-header {
  background: url('https://static.cozycozy.com/images/catalog/bg2/horizontal-bali.jpg') center/cover no-repeat;
  height: 600px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.bali-header h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.bali-header p {
  font-size: 18px;
}

/* Layout Section */
.bali-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 40px;
}

.bali-info {
  flex: 1;
  min-width: 300px;
  background: #fff5ea;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.bali-info h3 {
  color: #a0522d;
  margin-top: 10px;
}

.bali-info p {
  color: #333;
  line-height: 1.6;
}

/* Attractions */
.bali-attractions {
  flex: 1.5;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.attraction-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.attraction-card:hover {
  transform: scale(1.05);
}

.attraction-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.attraction-card p {
  padding: 10px;
  font-size: 14px;
  color: #444;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #d2691e;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #a0522d;
}




/* New York Theme */
.ny-body {
  background-color: #f0f0f5;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
}

.ny-header {
  background: url('https://media.istockphoto.com/id/502846306/photo/lower-manhattan-skyline.jpg?s=612x612&w=0&k=20&c=RdzbupJ24bBmg9_17nxvOqdpMjhZMw78Pb3QlxgSIV8=') center/cover no-repeat;
  height: 280px;
  color: white;
  text-align: center;
  padding-top: 80px;
}

.ny-header h2 {
  font-size: 38px;
  margin: 0;
}

.ny-header p {
  font-size: 18px;
  margin-top: 10px;
}

.ny-intro {
  padding: 40px 20px;
  text-align: center;
  max-width: 800px;
  margin: auto;
  background-color: white;
  margin-top: -40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.btn-ny {
  background-color: #1c1c1c;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s;
}

.btn-ny:hover {
  background-color: #444;
}

.ny-attractions {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.ny-card {
  background-color: white;
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.ny-card:hover {
  transform: scale(1.02);
}

.ny-card img {
  width: 50%;
  object-fit: cover;
  height: 220px;
}

.ny-info {
  padding: 20px;
  flex: 1;
}

.ny-info h3 {
  margin-top: 0;
  color: #1c1c1c;
}

.ny-info p {
  color: #555;
}
