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

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;

}

.logo img {
  height: 60px;
  max-width: 96%;

}

.menu {
  display: flex;
  list-style: none;
  gap: 30px; 
}

.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding: 0 10px; 
}

.hero {
  background: url('assets/arkaplan.png') center/cover no-repeat;
  height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 48px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 60px;
}

.boxes {
  display: flex;
  gap: 40px;
}

.box {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.icon {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}
.main-gallery {
  text-align: center;
  margin-bottom: 20px;
}

.main-img {
  width: 80%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.thumbnail-gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnail-gallery img {
  width: 120px;
  height: auto;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s;
}

.thumbnail-gallery img:hover {
  transform: scale(1.05);
}
body.yacht-detail {
  background: white !important;
  color: black !important;
}

.yacht-detail p,
.yacht-detail h1,
.yacht-detail h2,
.yacht-detail h3,
.yacht-detail h4,
.yacht-detail h5 {
  color: black !important;
}
/* Galeri kutuları */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.03);
}

/* Yat detay kutusu hover efekti */
.yacht-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 25px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.yacht-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}
.yacht-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.yacht-card h3 {
  font-size: 18px;
  color: #003366;
  margin: 0 0 5px;
}
.yacht-card p {
  font-size: 14px;
  color: #333;
  margin: 3px 0;
}
.yacht-card a {
  text-decoration: none !important;
  color: inherit;
}

.yacht-card a p,
.yacht-card a h3 {
  text-decoration: none !important;
  color: inherit;
}
.yacht-card a,
.yacht-card a:hover,
.yacht-card a:visited {
  text-decoration: none !important;
  color: inherit;
}
.yacht-card a {
  text-decoration: none;
  color: inherit;
}
nav a {
  font-size: 18px;
  font-weight: 600;
  color: #002244;
  padding: 10px 18px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav a:hover {
  background-color: #eaeaea;
  border-radius: 5px;
  color: #004080;
}
.specs-section {
  margin-top: 40px;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}
.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
  color: #444;
  font-size: 16px;
}
.catalog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
