/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

a {
  text-decoration: none;
  color: #0077be;
  transition: color 0.3s ease;
}

a:hover {
  color: #005588;
}

ul {
  list-style: none;
}

/* Logo styling */
.logo-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000; /* Ensure logo stays on top of other content */
  transition: transform 0.3s ease;
}

.logo-container img {
  width: 277px;
  height: 150px;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* Logo hover effect */
.logo-container:hover {
  transform: scale(1.05);
}

/* Header styling */
header {
  background-color: #0077be; /* Ocean blue color */
  color: white;
  padding: 2rem;
  padding-left: 190px; /* Make room for the logo */
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

nav ul li a {
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Hero Banner */
.hero-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://assets.dm.rccl.com/is/image/RoyalCaribbeanCruises/royal/ports-and-destinations/destinations/caribbean-beaches/assets/beautiful-barbados-bottom-bay-beach-hero.jpg?$1440x600$');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #ff6b00;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #e05c00;
  color: white;
  transform: translateY(-3px);
}

/* Main content styling */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  margin-bottom: 4rem;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #0077be;
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #0077be;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0077be;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Stats container */
.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  min-width: 200px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #0077be;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
}

/* Destination styling */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.destination {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.destination:hover {
  transform: translateY(-5px);
}

.destination-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.caribbean {
  background-image: url('https://assets.dm.rccl.com/is/image/RoyalCaribbeanCruises/royal/ports-and-destinations/destinations/caribbean-beaches/assets/beautiful-barbados-bottom-bay-beach-hero.jpg?$1440x600$');
}

.mediterranean {
  background-image: url('https://cdn.ama.ab.ca/amatravelinternal/articles/images/western-mediterranean-explorer-vikings-cruise-map.jpg');
}

.alaska {
  background-image: url('https://assets.princess.com/is/image/princesscruises/glacier-bay-national-park-alaska-crown-princess-glacier-viewing:16x9?ts=1724151079161');
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
}

.destination-overlay h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.destination-price {
  font-weight: bold;
  color: #ff6b00;
}

.destination-content {
  padding: 1.5rem;
}

.destination-highlights {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.destination-highlights li {
  margin-bottom: 0.5rem;
  position: relative;
  list-style-type: disc;
}

.button {
  display: inline-block;
  background-color: #0077be;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #005588;
  color: white;
}

/* Amenities styling */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.amenity-card {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
  font-size: 2.5rem;
  color: #0077be;
  margin-bottom: 1rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-dining::before {
  content: "🍽️";
}

.icon-entertainment::before {
  content: "🎭";
}

.icon-wellness::before {
  content: "💆";
}

.icon-family::before {
  content: "👨‍👩‍👧‍👦";
}

.amenity-card ul {
  text-align: left;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.amenity-card li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

/* Packages styling */
.packages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.package {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  padding: 2rem;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.package.featured {
  background-color: #e6f3fa;
  border: 2px solid #0077be;
  transform: scale(1.05);
}

.package.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.package-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #ff6b00;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
}

.package-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0077be;
  margin-bottom: 1.5rem;
}

.package-features {
  margin-bottom: 2rem;
  text-align: left;
  padding-left: 1.5rem;
}

.package-features li {
  margin-bottom: 0.75rem;
  position: relative;
  list-style-type: disc;
}

/* Testimonials styling */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
}

.testimonial-content {
  position: relative;
  padding: 1.5rem;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  color: #0077be;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-author {
  margin-top: 1rem;
  text-align: right;
}

.author {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.cruise {
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
}

/* Booking section styling */
.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.booking-option {
  text-align: center;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.contact-info {
  font-weight: bold;
  color: #0077be;
  font-size: 1.2rem;
}

.booking-cta {
  background-color: #0077be;
  color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 3rem;
}

.booking-cta h3 {
  color: white;
  font-size: 1.8rem;
}

.booking-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

/* Footer styling */
footer {
  background-color: #333;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #0077be;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  color: #ccc;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #555;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: #ccc;
}

.footer-bottom a:hover {
  color: white;
}

/* Responsive design */
@media (max-width: 1200px) {
  main {
    padding: 2rem 1rem;
  }
}

@media (max-width: 900px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .logo-container {
    top: 10px;
    left: 10px;
  }
  
  .logo-container img {
    width: 100px;
    height: 100px;
  }
  
  header {
    padding: 1.5rem;
    padding-left: 120px;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  nav ul {
    gap: 0.75rem;
  }
  
  .hero-banner {
    height: 400px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  section {
    padding: 1.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .logo-container {
    top: 5px;
    left: 5px;
  }
  
  .logo-container img {
    width: 80px;
    height: 80px;
  }
  
  header {
    padding: 1rem;
    padding-left: 95px;
  }
  
  header h1 {
    font-size: 1.5rem;
  }
  
  header p {
    font-size: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-banner {
    height: 300px;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 1rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .packages-container, .testimonials-container {
    gap: 1rem;
  }
  
  .package, .testimonial {
    padding: 1rem;
  }
}