@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Roboto:wght@300;400;500&display=swap');

/* Base Styles */
:root {
  --primary-blue: #005f73; /* Bosphorus blue */
  --secondary-blue: #0a9396;
  --gold: #e9c46a;
  --terracotta: #e76f51;
  --light-terracotta: #f4a261;
  --dark: #001219;
  --light: #f8f9fa;
  --gray: #6c757d;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: var(--light);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 31, 63, 0.95), rgba(0, 95, 115, 0.9));
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  z-index: 10;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

/* Sticky header effect */
.navbar.sticky {
  padding: 0.8rem 2rem;
  background: linear-gradient(to right, rgba(0, 31, 63, 0.98), rgba(0, 95, 115, 0.95));
}

.logo {
  font-size: 2rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

.logo:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hamburger:hover {
  color: var(--gold);
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 80%;
}

/* Active state for current page */
.nav-links a.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active::after {
  width: 80%;
}

/* Hero Section with Video */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  transform: scale(1.03);
  transition: transform 10s ease;
  animation: subtle-zoom 20s infinite alternate;
}

@keyframes subtle-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.7), rgba(0, 95, 115, 0.6));
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  animation: fade-in 1.5s ease-out;
}

@keyframes fade-in {
  from { opacity: 0; transform: translate(-50%, -40%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

.hero-overlay h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--light);
}

.hero-overlay p {
  font-size: 1.3rem;
  margin-bottom: 1.8rem;
  font-weight: 300;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
  padding: 0.85rem 1.8rem;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--terracotta);
  transition: var(--transition);
  z-index: -1;
  border-radius: 50px;
}

.btn:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn:hover::before {
  width: 100%;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.intro {
  padding: 8rem 2rem 6rem;
  text-align: center;
  max-width: 900px;
  margin: auto;
  position: relative;
  background: linear-gradient(to bottom, var(--light), #f0f2f5);
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
  border-radius: 2px;
}

.intro h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.intro p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.9;
}

/* CTA Container */
.cta-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .cta-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Features Section */
.features {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  margin: 3rem 0;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23005f73' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.features h2 {
  margin-bottom: 3rem;
  font-size: 2.7rem;
  color: var(--primary-blue);
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.features h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--terracotta));
  border-radius: 2px;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  max-width: 300px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Page Header for Inner Pages */
.page-header {
  background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
  color: white;
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--gold), var(--terracotta));
}

.page-header h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}

/* Breadcrumb Navigation */
.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs .current {
  color: var(--gold);
}

/* Content Section for Inner Pages */
.content-section {
  padding: 5rem 2rem;
  background: var(--light);
}

.content-section p {
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--gray);
}

/* Pull Quote */
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--primary-blue);
  border-left: 4px solid var(--gold);
  padding: 1rem 0 1rem 2rem;
  margin: 3rem 0;
  position: relative;
  font-style: italic;
  max-width: 800px;
}

.pull-quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  left: 0.5rem;
  top: -1rem;
  color: var(--gold);
  opacity: 0.3;
}

.content-section p:last-child {
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  max-width: 700px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-blue);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
  max-height: 300px;
  min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 2px rgba(10, 147, 150, 0.2);
}

/* Developer Cards */
.developer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.developer-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.developer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.developer-card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.developer-card p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.developer-card .role {
  display: inline-block;
  background: var(--light);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: linear-gradient(to right, var(--dark), #0a2540);
  color: white;
  padding: 3rem 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--terracotta));
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-newsletter {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.footer-copyright {
  flex-shrink: 0;
  text-align: right;
}

footer p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Footer Newsletter */
.footer-newsletter h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: white;
}

.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  max-width: 400px;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 50px 0 0 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 0.75rem 1.2rem;
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-newsletter, .footer-copyright {
    width: 100%;
    text-align: center;
  }
  
  .newsletter-form {
    margin: 0 auto;
  }
  
  @media (max-width: 600px) {
    .newsletter-form {
      flex-direction: column;
      gap: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
      width: 100%;
      border-radius: 50px;
    }
  }
}

/* Social Media Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-links a:hover {
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-blue);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-blue);
  transform: translateY(-3px);
}

/* Responsive Navbar */
/* Food Cards */
.food-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
}

.food-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.food-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.food-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.food-card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.food-card p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(to bottom, rgba(0, 31, 63, 0.98), rgba(0, 95, 115, 0.95));
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    display: flex;
    animation: slide-down 0.3s ease-out forwards;
  }

  @keyframes slide-down {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links a {
    width: 100%;
    padding: 0.8rem 1rem;
    border-left: 3px solid transparent;
    transition: var(--transition);
  }

  .nav-links a:hover {
    border-left: 3px solid var(--gold);
    background: rgba(255, 255, 255, 0.05);
  }

  .hamburger {
    display: block;
  }

  .hero-overlay h2 {
    font-size: 2.2rem;
  }

  .hero-overlay p {
    font-size: 1.1rem;
  }

  .intro, .features {
    padding: 4rem 1.5rem;
  }

  .feature-card {
    width: 100%;
    max-width: 350px;
  }

  .page-header h2 {
    font-size: 2.2rem;
  }

  .developer-cards, .food-cards {
    grid-template-columns: 1fr;
  }
}

.thank-you {
  display: none;
}

/* Animation for elements as they enter viewport */
@media (prefers-reduced-motion: no-preference) {
  .intro, .features, .feature-card, .content-section, .contact-form, .developer-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .intro.visible, .features.visible, .feature-card.visible, .content-section.visible, .contact-form.visible, .developer-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

.history-images {
  padding: 4rem 0;
  background-color: var(--light);
}

.full-image-block {
  margin-bottom: 3rem;
  text-align: center;
}

.full-image-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.full-image-block h3 {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.full-image-block p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0.5rem auto;
}

}

.nature-image-block {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 4rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  }
  
  .nature-image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nature-image-block h3 {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-blue);
  }
  
  .nature-image-block p {
    font-size: 1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0.5rem auto 0;
    line-height: 1.7;
  }
  .bohemian-image-block {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 4rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  }
  
  .bohemian-image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .bohemian-image-block h3 {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-blue);
  }
  
  .bohemian-image-block p {
    font-size: 1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0.5rem auto 0;
    line-height: 1.7;
  }

  .about-image-block {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 4rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-image-block img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
  }
  
  .about-image-block h3 {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-blue);
  }
  
  .about-image-block p {
    font-size: 1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0.5rem auto 0;
    line-height: 1.7;
  }

  .image-block {
    text-align: center;
    margin: 2rem 0;
  }
  
  .image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .image-caption {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 0.5rem;
  }
/* Travel Tips Image Blocks */
.travel-tips-image {
  width: 800px;
  height: 450px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#process {
  padding-top: 10%;
}

@media (max-width: 960px) {
  .travel-tips-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

