:root {
  --primary-color: #1a56db;
  --secondary-color: #111827;
  --accent-color: #3b82f6;
  --light-gray: #f3f4f6;
  --medium-gray: #9ca3af;
  --dark-gray: #4b5563;
  --white: #ffffff;
  --body-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --heading-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --border-radius: 0.375rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--body-font);
  line-height: 1.5;
  color: var(--secondary-color);
  background-color: var(--white);
}

/* Set html lang attribute based on selected language */
html[lang="el"] body {
  font-family: var(--body-font);
}

/* Set html lang attribute based on selected language */
html[lang="el"] body {
  font-family: var(--body-font);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

button, .btn {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #0f46b5;
}

.header {
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  background-color: var(--white);
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

display: flex;
align-items: center;
font-weight: bold;
font-size: 1.25rem;
color: var(--secondary-color);
position: absolute;
left: 1.5rem;
}

.logo-icon {
width: 40px;
height: 40px;
margin-right: 0.5rem;
}

.logo img {
  height: 80px; /* Doubled from original 40px */
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin: 0 auto;
}

.nav-item {
  position: relative;
  padding: 0.5rem 0;
}

.nav-item a {
  color: var(--dark-gray);
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.nav-item a:hover {
  color: var(--primary-color);
}

.nav-item a svg {
  margin-left: 0.25rem;
  width: 16px;
  height: 16px;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.locate-btn {
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
}

.locate-btn:hover {
  background-color: #0f46b5;
}

.language-selector {
  position: absolute;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-flag {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.lang-flag:hover {
  transform: scale(1.1);
}

.lang-flag.active {
  border-color: var(--primary-color);
}

@media (max-width: 768px) {
  .language-selector {
    display: none !important;
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 200;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background-color: var(--white);
  z-index: 150;
  padding: 5rem 2rem 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-item a {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 1.25rem;
  display: block;
  transition: var(--transition);
}

.mobile-nav-item a:hover {
  color: var(--primary-color);
}

.mobile-language-selector {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-language-selector .lang-flag {
  width: 30px;
  height: 30px;
}

@media (min-width: 769px) {
  .mobile-language-selector {
    display: none;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.body-no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .locate-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    justify-content: center;
    padding-top: 90px; /* Increased from 60px to provide more space below logo */
  }
  
  .logo {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .language-selector {
    display: flex !important;
    position: relative;
    right: auto;
    justify-content: center;
    margin-top: 10px;
  }
}

/* Additional mobile nav adjustments */
@media (max-width: 768px) {
  .mobile-menu, 
  .mobile-menu-overlay {
    display: none;
  }
  
  .nav-item {
    padding: 0.15rem 0.4rem; /* Reduced padding */
  }
  
  .nav-item.active::after {
    bottom: -0.3rem; /* Reduced from -0.5rem */
  }
  
  /* Make nav links smaller */
  .nav-links .nav-item a {
    font-size: 0.9rem;
  }

  /* Add space between navigation rows */
  .nav-links {
    margin-top: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Additional mobile nav adjustments */
@media (max-width: 768px) {
  .mobile-menu, 
  .mobile-menu-overlay {
    display: none;
  }
  
  .nav-item {
    padding: 0.15rem 0.4rem; /* Reduced padding */
  }
  
  .nav-item.active::after {
    bottom: -0.3rem; /* Reduced from -0.5rem */
  }
  
  /* Make nav links smaller */
  .nav-links .nav-item a {
    font-size: 0.9rem;
  }

  /* Add space between navigation rows */
  .nav-links {
    margin-top: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.7rem 0; /* Reduced from 1rem */
  }
  
  .logo {
    margin-bottom: 0;
  }
  
  .language-selector {
    display: flex !important;
    justify-content: center;
    margin-top: 5px; /* Reduced from 10px */
    position: relative;
    right: auto;
  }
  
  .mobile-language-selector {
    display: none;
  }
  
  /* Make flags smaller */
  .lang-flag {
    width: 20px; /* Reduced from 25px */
    height: 20px; /* Reduced from 25px */
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.7rem 0; /* Reduced from 1rem */
  }
  
  .logo {
    margin-bottom: 0;
  }
  
  .language-selector {
    display: flex !important;
    justify-content: center;
    margin-top: 5px; /* Reduced from 10px */
    position: relative;
    right: auto;
  }
  
  .mobile-language-selector {
    display: none;
  }
  
  /* Make flags smaller */
  .lang-flag {
    width: 20px; /* Reduced from 25px */
    height: 20px; /* Reduced from 25px */
  }
}

/* Mobile menu styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 200;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background-color: var(--white);
  z-index: 150;
  padding: 5rem 2rem 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-item a {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 1.25rem;
  display: block;
  transition: var(--transition);
}

.mobile-nav-item a:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.body-no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .locate-btn {
    display: none;
  }
  
  .header-container {
    justify-content: space-between;
  }
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  padding: 0 1rem;
}

.hero-image img {
  border-radius: var(--border-radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-description {
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.search-container {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.search-container h3 {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-row {
  display: flex;
  gap: 1rem;
}

.search-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: var(--border-radius);
  font-family: inherit;
}

.search-input:focus {
  outline: 2px solid var(--accent-color);
  border-color: transparent;
}

.search-select {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: var(--border-radius);
  font-family: inherit;
  background-color: var(--white);
  cursor: pointer;
}

.search-button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.search-button:hover {
  background-color: #0f46b5;
}

.gallery-section {
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0 1rem;
}

.gallery-item {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-controls {
  display: flex;
  gap: 0.5rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
}

.gallery-control {
  background-color: var(--white);
  color: var(--secondary-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.gallery-control:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.map-section {
  flex: 1;
  min-width: 300px;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--light-gray);
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
}

/* Always show gallery section at bottom of page */
.gallery-section {
  margin-top: 3rem;
  margin-bottom: 0;
  padding-bottom: 3rem;
  background-color: var(--white);
  z-index: 10;
}

/* Ensure content has minimum height to push gallery to bottom */
#content {
  min-height: calc(100vh - 500px);
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
  .gallery-section {
    padding-top: 1.5rem;
  }
  
  .gallery-grid {
    gap: 1rem;
  }
  
  .gallery-item {
    min-height: 200px;
  }
}

.about-section {
          max-width: 1200px;
          margin: 0 auto;
          padding: 2rem 1rem;
        }

        .about-content {
          display: flex;
          flex-wrap: wrap;
          gap: 3rem;
          align-items: flex-start;
        }

        .about-image {
          flex: 1;
          min-width: 300px;
          max-width: 400px;
        }

        .about-text {
          flex: 2;
          min-width: 300px;
        }

.about-image img {
          width: 100%;
          height: auto;
          border-radius: var(--border-radius);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
        }

.about-text h1 {
          font-size: 2.5rem;
          margin-bottom: 1.5rem;
          color: var(--secondary-color);
        }

        .about-text h2 {
          font-size: 1.5rem;
          margin-bottom: 1rem;
          color: var(--primary-color);
        }

        .about-text p {
          margin-bottom: 0.75rem;
          line-height: 1.3;
        }

.social-links {
          display: flex;
          gap: 1.5rem;
          margin-top: 2rem;
        }

        .social-link {
          width: 45px;
          height: 45px;
          background-color: var(--light-gray);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--primary-color);
          font-size: 1.25rem;
          transition: var(--transition);
        }

        .social-link:hover {
          background-color: var(--primary-color);
          color: var(--white);
          transform: translateY(-3px);
        }

@media (max-width: 768px) {
          .about-content {
            flex-direction: column;
            align-items: center;
          }
          
          .about-image {
            max-width: 300px;
          }
        }

.alternative-setup-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.alternative-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.alternative-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.alternative-description {
  line-height: 1.6;
}

.alternative-description p {
  margin-bottom: 1rem;
}

.alternative-photos {
  margin-top: 1rem;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.alternative-video {
  margin-top: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
}

@media (max-width: 768px) {
  .alternative-content {
    flex-direction: column;
  }
  
  .photos-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.photos-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.photos-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.photos-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.photo-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.video-section {
  margin-top: 3rem;
}

.video-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .photos-content {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
}

footer {
  background-color: var(--light-gray);
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.logo-footer {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.logo-footer .logo-icon {
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
}

.footer-info p {
  color: var(--dark-gray);
}

.footer-links {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: flex-end;
}

.footer-links ul {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--dark-gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding-top: 0;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-image {
    order: 1;
    padding-top: 0;
    width: 100%;
    max-height: 200px;
    overflow: hidden;
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 200px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.3rem;
  }
  
  .hero-subtitle {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .hero-description {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .search-row {
    flex-direction: column;
  }
  
  .gallery-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-links {
    justify-content: flex-start;
    display: none;
  }
  
  .footer-links ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Hide footer content in mobile */
@media (max-width: 768px) {
  footer {
    display: none;
  }
}

/* Hide footer content in mobile */
@media (max-width: 768px) {
  footer {
    display: none;
  }
}

@media (max-width: 768px) {
          .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
          }
          
          .header-container {
            flex-direction: column;
            justify-content: center;
            gap: 0.5rem;
          }
        }

/* Mobile background color fix */
@media (max-width: 768px) {
  body, 
  #app, 
  .header, 
  .hero-section, 
  .about-section, 
  .photos-section, 
  .alternative-setup-section, 
  .gallery-section,
  .container,
  .mobile-menu-overlay {
    background-color: var(--white);
  }
  
  .mobile-menu {
    background-color: var(--white);
  }
  
  .mobile-nav-item {
    background-color: var(--white);
  }
  
  .contact-content, 
  .contact-card {
    background-color: var(--white);
  }
}

/* Force light mode on mobile devices */
:root {
  color-scheme: light only;
}

@media (prefers-color-scheme: dark) {
  body, 
  #app, 
  .header, 
  .hero-section, 
  .about-section, 
  .photos-section, 
  .alternative-setup-section, 
  .gallery-section,
  .container,
  .mobile-menu,
  .mobile-nav-item,
  .contact-content, 
  .contact-card,
  .footer-content,
  .about-content,
  .about-text,
  .about-image,
  .photos-content,
  .photo-item,
  .alternative-content,
  .alternative-description {
    background-color: var(--white) !important;
    color: var(--secondary-color) !important;
  }
  
  .mobile-menu-toggle span {
    background-color: var(--secondary-color) !important;
  }
  
  h1, h2, h3, h4, h5, p, span, a {
    color: inherit !important;
  }
  
  input, select, textarea, button {
    background-color: var(--white) !important;
    color: var(--secondary-color) !important;
    border-color: var(--medium-gray) !important;
  }
}

/* Force light mode on mobile devices */
:root {
  color-scheme: light only;
}

@media (prefers-color-scheme: dark) {
  body, 
  #app, 
  .header, 
  .hero-section, 
  .about-section, 
  .photos-section, 
  .alternative-setup-section, 
  .gallery-section,
  .container,
  .mobile-menu,
  .mobile-nav-item,
  .contact-content, 
  .contact-card,
  .footer-content,
  .about-content,
  .about-text,
  .about-image,
  .photos-content,
  .photo-item,
  .alternative-content,
  .alternative-description {
    background-color: var(--white) !important;
    color: var(--secondary-color) !important;
  }
  
  .mobile-menu-toggle span {
    background-color: var(--secondary-color) !important;
  }
  
  h1, h2, h3, h4, h5, p, span, a {
    color: inherit !important;
  }
  
  input, select, textarea, button {
    background-color: var(--white) !important;
    color: var(--secondary-color) !important;
    border-color: var(--medium-gray) !important;
  }
}

/* Mobile background color fix */
@media (max-width: 768px) {
  body, 
  #app, 
  .header, 
  .hero-section, 
  .about-section, 
  .photos-section, 
  .alternative-setup-section, 
  .gallery-section,
  .container,
  .mobile-menu-overlay {
    background-color: var(--white);
  }
  
  .mobile-menu {
    background-color: var(--white);
  }
  
  .mobile-nav-item {
    background-color: var(--white);
  }
  
  .contact-content, 
  .contact-card {
    background-color: var(--white);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .search-row {
    flex-wrap: wrap;
  }
  
  .search-input, .search-select {
    min-width: 200px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-item {
    padding: 0.2rem 0.3rem;
  }
  
  .nav-links .nav-item a {
    font-size: 0.85rem;
  }
  
  .nav-links {
    gap: 0.3rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  html[lang="el"] .nav-item {
    padding: 0.1rem 0.2rem;
  }
  
  html[lang="el"] .nav-links .nav-item a {
    font-size: 0.8rem;
  }
  
  html[lang="el"] .nav-links {
    gap: 0.2rem;
    transform: translateX(-1cm); /* Move Greek navigation items 1cm left */
  }
}