/* ======================= */
/* === CORE RESETS/ROOT === */
/* ======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ======================= */
/* === LAYOUT CONTAINERS === */
/* ======================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-wrapper,
.ship-content,
.fleet-page,
.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* ======================= */
/* === HEADER/NAVIGATION === */
/* ======================= */
.main-header {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 50px;
}

.main-nav {
  display: flex;
  gap: 25px;
}

.main-nav a {
  color: #004466;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #006699;
}

/* ======================= */
/* === HERO SECTIONS === */
/* ======================= */
.home-hero,
.ship-hero {
  position: relative;
  overflow: hidden;
}

.home-hero {
  height: 80vh;
  min-height: 600px;
}

.ship-hero {
  margin-bottom: 20px;
}

.hero-ship-image,
.ship-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ship-hero-image {
  height: 60vh;
  min-height: 400px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 68, 102, 0.3);
}

.hero-content,
.ship-hero-text {
  position: absolute;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  z-index: 2;
}

.hero-content {
  bottom: 100px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 20px;
}

.ship-hero-text {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  background: rgba(30, 30, 30, 0.85);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1);
  backdrop-filter: blur(3px);
  white-space: nowrap;
}

.hero-content h1,
.ship-hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: white;
}

.hero-content p,
.ship-hero-text p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: white;
}

.ship-hero-text h1 {
  font-size: 2rem;
  margin: 0;
  line-height: 1;
  padding: 0 2px;
  letter-spacing: -0.5px;
}

.ship-hero-text p {
  color: #b8d6ff !important;
  font-size: 1rem;
  margin: 3px 0 0 0;
  padding: 0 2px;
  letter-spacing: -0.3px;
}

.ship-hero-text::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 30%;
  right: 30%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* ======================= */
/* === BREADCRUMBS === */
/* ======================= */
.breadcrumb {
  background: #f5f5f5;
  padding: 15px 0;
  margin-bottom: 30px;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: #004466;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .divider {
  margin: 0 10px;
  color: #999;
}

.breadcrumb .current {
  color: #666;
  font-weight: 500;
}

.breadcrumb i {
  margin-right: 8px;
  color: #004466;
}

/* ======================= */
/* === SECTION NAVIGATION === */
/* ======================= */
.section-nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 14px 0;
  position: sticky;
  top: 71px;
  z-index: 90;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav .container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 30px;
  max-width: 1200px;
}

.section-nav .container::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  color: #004466;
  text-decoration: none;
  font-weight: 500;
  padding: 14px 10px;
  border-radius: 6px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  flex-shrink: 0;
}

.section-nav i {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #006699;
  transition: transform 0.3s;
  display: block;
  width: 100%;
  text-align: center;
}

.section-nav span {
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  text-align: center;
  display: block;
  width: 100%;
}

.section-nav a:hover {
  background: #f0f7fa;
}

.section-nav a:hover i {
  transform: translateY(-2px);
  color: #004466;
}

.section-nav a.active {
  background: #e6f2f8;
}

.section-nav a.active i {
  color: #004466;
}

/* ======================= */
/* === GALLERY STYLES === */
/* ======================= */
.gallery {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.main-photo-container {
  position: relative;
  height: 70vh;
  min-height: 350px;
  max-height: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  contain: strict;
}

.main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease-out;
  will-change: opacity;
  backface-visibility: hidden;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 68, 102, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.gallery-nav:hover {
  background: #006699;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.thumbnail-scroller {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  padding: 5px 0;
}

.thumbnail {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.15s ease-out;
  flex-shrink: 0;
  will-change: transform, opacity;
}

.thumbnail:hover, 
.thumbnail.active {
  opacity: 1;
  transform: scale(1.05);
}

/* ======================= */
/* === CONTENT SECTIONS === */
/* ======================= */
.ship-content {
  padding: 0 20px 60px;
}

.content-section {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}

.content-section h2 {
  color: #004466;
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.list-style {
  list-style: none;
  margin: 20px 0;
}

.list-style li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.list-style li:before {
  content: "•";
  color: #FFAA00;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -3px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.spec-item {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
}

.spec-item span:first-child {
  font-weight: 500;
  color: #666;
}

.spec-item span:last-child {
  font-weight: 600;
  color: #004466;
}

.disclaimer {
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}

/* ======================= */
/* === BUTTON STYLES === */
/* ======================= */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: #004466;
  color: white;
}

.btn-primary:hover {
  background: #006699;
}

.btn-accent {
  background: #FFAA00;
  color: white;
}

.btn-accent:hover {
  background: #E69500;
}

.deckplan-btn,
.pdf-btn {
  background: #004466;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.deckplan-btn i,
.pdf-btn i {
  margin-right: 8px;
}

.deckplan-btn:hover,
.pdf-btn:hover {
  background: #006699;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pdf-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

/* ======================= */
/* === MODAL STYLES === */
/* ======================= */
.deckplan-modal,
.pdf-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

.deckplan-modal {
  z-index: 2000;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.deckplan-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.close-modal,
.close-pdf-modal {
  position: absolute;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal {
  top: 25px;
  right: 35px;
  font-size: 40px;
}

.close-modal:hover {
  color: #FFAA00;
}

.close-pdf-modal {
  top: 25px;
  right: 25px;
  font-size: 30px;
  background: rgba(0,0,0,0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  border: 2px solid white;
}

.pdf-modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#pdfEmbed {
  flex-grow: 1;
  width: 100%;
  min-height: 90vh;
  border: none;
  background: white;
  border-radius: 8px;
}

.pdf-download-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #004466;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 10001;
  display: none;
}

/* ======================= */
/* === FOOTER STYLES === */
/* ======================= */
.site-footer {
  background: #004466;
  color: white;
  text-align: center;
  padding: 30px 0;
  width: 100%;
  margin-top: auto;
}

.footer-links {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
}

/* ======================= */
/* === RESPONSIVE STYLES === */
/* ======================= */
@media (max-width: 1200px) {
  .fleet-page {
    padding: 0 30px;
  }
}

@media (max-width: 1024px) {
  .fleet-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .section-nav .container {
    gap: 16px;
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .main-nav {
    gap: 15px;
  }
  
  .fleet-page {
    padding: 0 20px;
  }
  
  .section-nav .container {
    justify-content: flex-start;
    gap: 14px;
    padding: 0 20px;
  }
  
  .section-nav a {
    min-width: 80px;
    padding: 12px 8px;
  }
  
  .section-nav i {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  
  .ship-hero-text {
    padding: 8px 12px;
    border-radius: 8px;
    bottom: 20%;
    white-space: normal;
  }
  
  .ship-hero-text h1 {
    font-size: 1.6rem;
  }
  
  .ship-hero-text p {
    font-size: 0.9rem;
  }
  
  .pdf-buttons {
    flex-direction: column;
  }
  
  .pdf-download-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  .main-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .fleet-container {
    grid-template-columns: 1fr;
  }
  
  .section-nav .container {
    gap: 10px;
    padding: 0 15px;
  }
  
  .section-nav a {
    min-width: 70px;
    padding: 10px 6px;
  }
  
  .section-nav i {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  
  .section-nav span {
    font-size: 0.85rem;
  }
  
  .ship-hero-text {
    padding: 6px 10px;
    border-radius: 6px;
  }
  
  .ship-hero-text h1 {
    font-size: 1.4rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* ======================= */
/* === HOMEPAGE SPECIFIC === */
/* ======================= */
.homepage-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  position: relative;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-container {
  position: relative;
}

.hero-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  padding: 0 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-preview {
  background: white;
  padding: 60px 20px;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-preview h2 {
  color: #004466;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.about-preview p {
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ======================= */
/* === FLEET PAGE SPECIFIC === */
/* ======================= */
.fleet-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px;
  flex: 1;
}

.fleet-page h1 {
  color: #004466;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.fleet-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.ship-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.ship-card:hover {
  transform: translateY(-5px);
}

.ship-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ship-info {
  padding: 20px;
  text-align: center;
}

.ship-info h3 {
  color: #004466;
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.ship-info p {
  color: #666;
  margin-bottom: 15px;
}

/* ======================= */
/* === ABOUT PAGE SPECIFIC === */
/* ======================= */
.about-content {
  background: white;
  padding: 60px 20px;
}

.text-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  line-height: 1.7;
  font-size: 1.1rem;
  color: #333;
}

.about-text p {
  margin-bottom: 1.2em;
}

.about-content h1 {
  color: #004466;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
}

.about-content h2 {
  color: #006699;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: normal;
  font-style: italic;
}

/* ======================= */
/* === TOUCH DEVICE FIXES === */
/* ======================= */
@media (hover: none) {
  .thumbnail:hover {
    opacity: 0.7;
    transform: none;
  }
}

/* ======================= */
/* === DESTINATIONS PAGE SPECIFIC === */
/* ======================= */
.destinations-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px;
  flex: 1;
}

.destinations-page h1 {
  color: #004466;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.destinations-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.destination-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.destination-info {
  padding: 20px;
  text-align: center;
}

.destination-info h3 {
  color: #004466;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.destination-info p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .destinations-page {
    padding: 0 30px;
  }
}

@media (max-width: 1024px) {
  .destinations-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .destinations-page {
    padding: 0 20px;
  }
  
  .destinations-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .destinations-container {
    grid-template-columns: 1fr;
  }
  
  .destination-card img {
    height: 180px;
  }
}

/* ======================= */
/* === RIVER PAGE STYLES === */
/* ======================= */

/* River Hero Section */
.river-hero {
  position: relative;
  margin-bottom: 20px;
}

.river-hero-image {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.river-hero-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  background: rgba(30, 30, 30, 0.85);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1);
  backdrop-filter: blur(3px);
  white-space: nowrap;
  text-align: center;
}

.river-hero-text h1 {
  font-size: 2rem;
  margin: 0;
  line-height: 1;
  padding: 0 2px;
  letter-spacing: -0.5px;
  color: white;
}

.river-hero-text p {
  color: #b8d6ff !important;
  font-size: 1rem;
  margin: 3px 0 0 0;
  padding: 0 2px;
  letter-spacing: -0.3px;
}

.river-hero-text::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 30%;
  right: 30%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* River Content Section */
.river-content {
  background: white;
  padding: 60px 0;
  flex: 1;
}

.content-section {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}

.content-section h2 {
  color: #004466;
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.content-section p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* Ship Button Styling (matches PDF/Deckplan buttons) */
.ship-page-btn {
  background: #004466;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-top: 15px;
}

.ship-page-btn i {
  margin-right: 8px;
}

.ship-page-btn:hover {
  background: #006699;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .river-hero-text {
    padding: 8px 12px;
    border-radius: 8px;
    bottom: 20%;
    white-space: normal;
    width: 90%;
  }
  
  .river-hero-text h1 {
    font-size: 1.6rem;
  }
  
  .river-hero-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .river-hero-text {
    padding: 6px 10px;
    border-radius: 6px;
  }
  
  .river-hero-text h1 {
    font-size: 1.4rem;
  }
  
  .content-section h2 {
    font-size: 1.7rem;
  }
  
  .ship-page-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* ======================= */
/* === CONTACT PAGE STYLES === */
/* ======================= */
.contact-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f5f5f5;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-container {
    padding: 20px;
  }
  
  .contact-image-wrapper {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 15px;
  }
  
  .contact-content {
    padding: 20px 10px;
  }
}

/* ======================= */
/* === CONTACT PAGE STYLES === */
/* ======================= */
.contact-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f5f5f5;
}

.contact-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: white;
  padding: 0;
  box-shadow: none;
}

.contact-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 180px); /* Full height minus header/footer */
  padding: 0;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keeps aspect ratio while filling container */
  border-radius: 0;
  box-shadow: none;
}

/* Make sure body and wrapper allow footer to stick to bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Footer adjustments to stick to bottom */
.site-footer {
  background: #004466;
  color: white;
  text-align: center;
  padding: 30px 0;
  width: 100%;
  margin-top: auto; /* This pushes footer to bottom */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-image-wrapper {
    height: calc(100vh - 160px);
  }
}

@media (max-width: 480px) {
  .contact-image-wrapper {
    height: calc(100vh - 150px);
  }
  
  .contact-content {
    padding: 10px;
  }
}


/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
}

.language-switcher img.flag {
  width: 30px;        /* force fixed width */
  height: 20px;       /* fixed height */
  object-fit: cover;  /* keep proper shape */
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: 0.2s;
}

.language-switcher img.flag:hover {
  border: 2px solid #333;  /* adds a border on hover */
}