/*
Theme Name: GiraVoyage Cruise
Theme URI: https://giravoyage.com
Description: Modern landing page theme for cruise travel agency
Version: 1.0
Author: Luis Diego
Author URI: https://luisdiego.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: giravoyage-travel
Domain Path: /languages
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  width: 100%;
  overflow-x: hidden;
}

/* Header & Navigation */
.header {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: white;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 1001;
}

.logo a {
  color: white;
  text-decoration: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
/* Hero Section */
.hero {
  background:
    linear-gradient(rgba(0, 102, 204, 0.65), rgba(0, 68, 153, 0.65)),
    url(../assets/cruise-ship.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 150px 2rem;
  text-align: center;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
} position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.cta-button {
  display: inline-block;
  background: #ff9500;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #ff9500;
  cursor: pointer;
  font-size: 1.1rem;
}
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Destinations Section */
.destinations {
  padding: 80px 2rem;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.destination-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.destination-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.destination-info {
  padding: 1.5rem;
}

.destination-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.destination-info p {
  color: #666;
  margin-bottom: 1rem;
}

.destination-price {
  font-size: 1.3rem;
  color: #ff6b6b;
  font-weight: bold;
/* Services Section */
.services {
  padding: 80px 2rem;
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
} padding: 80px 2rem;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #003366;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-item {
  text-align: center;
  padding: 2rem;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #003366;
}

.service-item p {
  color: #666;
/* Cruises Section */
.cruises {
  padding: 80px 2rem;
  background: #f0f7ff;
  width: 100%;
  box-sizing: border-box;
} padding: 80px 2rem;
  background: #f0f7ff;
}

.cruises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.cruise-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border-top: 4px solid #0066cc;
}

.cruise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 102, 204, 0.2);
}

.cruise-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

.cruise-info {
  padding: 1.5rem;
}

.cruise-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #003366;
}

.cruise-duration {
  font-size: 0.9rem;
  color: #0066cc;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cruise-ports {
  font-size: 0.85rem;
  color: #0088dd;
  background: #e8f4fd;
  padding: 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  border-left: 3px solid #0066cc;
}

.cruise-info p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cruise-features {
  font-size: 0.85rem;
  color: #444;
  background: #f5f9ff;
  padding: 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cruise-features strong {
  color: #003366;
}

.cruise-price {
  font-size: 1.4rem;
  color: #ff9500;
  font-weight: bold;
  margin-bottom: 1rem;
}

.book-btn {
  display: inline-block;
  background: #0066cc;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #0066cc;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: white;
  width: 100%;
  box-sizing: border-box;
}
/* Testimonials Section */
.testimonials {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: white;
}

.testimonials .section-title {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.testimonial-text {
/* Newsletter Section */
.newsletter {
  padding: 60px 2rem;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: white;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Newsletter Section */
.newsletter {
  padding: 60px 2rem;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: white;
  text-align: center;
}

.newsletter .section-title {
  color: white;
  margin-bottom: 1rem;
}

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

.newsletter-form {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  .newsletter-form button {
    padding: 15px 30px;
    background: #ff9500;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }

  .newsletter-form button:hover {
    background: #ff7700;
  }
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background: #ff5252;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.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 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    gap: 0;
    padding: 2rem 0;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cruises-grid {
    grid-template-columns: 1fr;
  }

  .cruise-card {
    margin-bottom: 1rem;
  }

  .cruise-features {
    font-size: 0.8rem;
  }

  .cruise-price {
    font-size: 1.2rem;
  }

  .book-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero {
    margin-top: 70px;
  }
}
