/* Βασικό Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts και Χρώματα */
body {
  font-family: 'Roboto', sans-serif;
  background-color: WHITE;
  color: #333;
}

h2 {
  font-size: 4rem;
  margin-bottom: 30px;
}

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

header.hero {
  background: url('pics/1.jpg') no-repeat center center/cover;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  text-align: center;
  position: relative; /* Για να λειτουργήσει το θολό φόντο σωστά */
}

.hero-text {
  position: relative;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5); /* Μισοδιαφανές μαύρο φόντο για το κείμενο */
  border-radius: 10px; /* Προαιρετικά, για πιο στρογγυλεμένες γωνίες */
  backdrop-filter: blur(8px); /* Εφαρμόζει θόλωμα στο φόντο */
  z-index: 1; /* Σιγουρευόμαστε ότι το κείμενο είναι πάνω από το υπόλοιπο περιεχόμενο */
}


/* Container για τα λογότυπα */
.logos-wrapper {
  width: 100%;
  background: white; /* λευκό φόντο */
  padding: 20px 0;
  margin-top: 20px;
}
.logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}



/* Responsive ρυθμίσεις */
@media (max-width: 768px) {
  .logos {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    width: 80px;
  }
}
/* Dropdown Μενού */
.bold-link {
  font-weight: 900; /* Super extra bold */
  font-size: 5rem;
}
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  list-style: none;
  padding: 10px 0;
  width: 180px;
  z-index: 1001;
}

.dropdown-menu li a {
  color: white;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #ff7f50;
}

/* Εμφάνιση Dropdown στο Hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: WHITE;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
}

.nav-links a {
  color: BLACK;
  font-size: 1.5rem;
  padding: 10px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: black;
}

.hero-text h1 {
  font-size: 3rem;
  margin: 0;
}

.hero-text p {
  font-size: 1.5rem;
  margin-top: 10px;
}
/* Στυλ για την ενότητα SEADOO */
#SEADOO {
  padding: 50px 20px;
  text-align: center;
  background-color: WHITE;
}

#SEADOO h2 {
  font-size: 4rem;
  margin-bottom: 30px;
}

#SEADOO p {
  font-size:2rem;
  margin-bottom: 30px;
}

.seadoo-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.seadoo-image {
  width: 400px;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.seadoo-image:hover {
  transform: scale(1.1);
}

.central-image {
  width: 100%;
  height: auto; /* Για να κρατήσει τις αναλογίες της */
  display: block; /* Αφαιρεί το μικρό κενό κάτω από τις εικόνες */
}


/* Στυλ για την ενότητα tohatsu */
#tohatsu {
  padding: 50px 20px;
  text-align: center;
  background-color: white;
}

#tohatsu h2 {
  font-size: 4rem;
  margin-bottom: 30px;
}

#tohatsu p {
  font-size: 2rem;
  margin-bottom: 30px;
}

.tohatsu-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tohatsu-images a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 200px; /* σταθερό πλάτος */
  background: white;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tohatsu-images a:hover {
  transform: scale(1.05);
}

.tohatsu-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: white;
}

.image-title {
  margin-top: 10px;
  font-size: 1.5rem;
  color: black;
}
/* Στυλ για την ενότητα ZODIAC */
#zodiac {
  padding: 50px 20px;
  text-align: center;
  background-color: white;
}

#zodiac h2 {
  font-size: 4rem;
  margin-bottom: 30px;
}

#zodiac p {
  font-size: 2rem;
  margin-bottom: 30px;
}

.zodiac-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.zodiac-images a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 200px; /* σταθερό πλάτος */
  background: white;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.zodiac-images a:hover {
  transform: scale(1.05);
}

.zodiac-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: white;
}

.image-title {
  margin-top: 10px;
  font-size: 1.5rem;
  color: black;
}
.section {
  padding: 60px 20px;
  text-align: center;
}

/* Services Section */
#services {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each Service */
.service {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service img {
  width: 60%;
  max-width: 150px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service p {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 500;
}


#accesories h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2c3e50;
  text-align: center;
}

.accesories-collage {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  position: relative;
}

.image-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}

.center-content {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  z-index: 1;
}

.center-content p {
  margin-bottom: 15px;
  font-size: 20px;
}

.pdf-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff7f50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.pdf-button:hover {
  background-color: #ff5722;
}


/* Responsive layout */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  font-size: 0.9rem;
}
/* Contact Section */
#contact {
  padding: 60px 20px;
  background-color: #f5f7fa;
  text-align: center;
  color: #333;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #2b2b2b;
}

/* Container for the whole section */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left side: Contact Information */
.contact-left {
  width: 48%;
  margin-bottom: 30px;
  text-align: left;
}

.contact-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.contact-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #7f8c8d;
}

.contact-card strong {
  color: #34495e;
}

/* Right side: Map */
.contact-right {
  width: 48%;
  margin-bottom: 30px;
}

.map-container {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  border: 0;
  border-radius: 12px;
}

/* Responsiveness: Stack elements on smaller screens */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-left, .contact-right {
    width: 100%;
  }

  .map-container iframe {
    height: 350px;
  }
}
