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

:root {
  --color-primary: #5A9EAD;
  --color-accent-beige: #EDE4D9;
  --color-accent-coral: #F4A261;
  --color-dark-navy: #2C3E50;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-text-primary: #2C3E50;
  --color-text-secondary: #5A6C7D;
  --spacing-unit: 1rem;
  --border-radius: 8px;
  --transition-smooth: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-primary);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark-navy);
}

h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-accent-coral);
  transform: translateY(-2px);
}

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.header-content {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 32px;
  height: 32px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

nav a:hover {
  color: var(--color-primary);
  transform: none;
}

main {
  margin-top: 80px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(90, 158, 173, 0.1) 0%, rgba(237, 228, 217, 0.1) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-coastal-food.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--color-dark-navy);
  margin-bottom: 1.5rem;
  font-size: 4.8rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-full {
  width: 100%;
  padding: 6rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-alt {
  background-color: var(--color-light-gray);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.content-row.reversed {
  direction: rtl;
}

.content-row.reversed > * {
  direction: ltr;
}

.content-row img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  text-align: center;
  margin-top: auto;
}

.btn:hover {
  background-color: var(--color-accent-coral);
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: var(--color-accent-beige);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-accent-coral);
  color: var(--color-white);
}

.faq {
  max-width: 800px;
  margin: 3rem auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1.5rem;
}

.faq-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-item h4:hover {
  color: var(--color-accent-coral);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

footer {
  background-color: var(--color-dark-navy);
  color: var(--color-white);
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--color-accent-beige);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #ccc;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #ccc;
  transition: var(--transition-smooth);
}

.footer-section a:hover {
  color: var(--color-accent-coral);
  transform: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-disclaimer {
  background-color: rgba(244, 162, 97, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-accent-coral);
  margin-bottom: 1rem;
  color: var(--color-dark-navy);
  font-size: 0.9rem;
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-dark-navy);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(90, 158, 173, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-disclaimer {
  background-color: var(--color-accent-beige);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  color: var(--color-dark-navy);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark-navy);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-message {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-message a {
  color: var(--color-accent-coral);
  transition: var(--transition-smooth);
}

.cookie-message a:hover {
  text-decoration: underline;
  transform: none;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cookie-accept {
  background-color: var(--color-accent-coral);
  color: var(--color-white);
}

.cookie-accept:hover {
  background-color: #e89450;
}

.cookie-reject {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.thank-you {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-content h1 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.thank-you-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.disclaimer-box {
  background-color: var(--color-accent-beige);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-primary);
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--color-dark-navy);
  margin-bottom: 1rem;
}

.disclaimer-box p {
  margin-bottom: 0.75rem;
}

.disclaimer-box strong {
  color: var(--color-dark-navy);
}

.article {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.article img {
  margin: 2rem 0;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.article h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article p {
  margin-bottom: 1rem;
}

.article ul, .article ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.article li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .content-row {
    grid-template-columns: 1fr;
  }

  .content-row.reversed {
    direction: ltr;
  }

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

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cookie-banner.active {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  nav ul {
    gap: 0.75rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }
}
