/* 
 * Style Sheet - Datena Pesca no Mar
 * A premium dark-ocean themed design system for a high-end sportfishing agency.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #030a16;
  --bg-secondary: #0a192f;
  --bg-card: rgba(17, 34, 64, 0.65);
  --bg-card-hover: rgba(23, 42, 69, 0.85);
  --accent: #64ffda;
  --accent-glow: rgba(100, 255, 218, 0.35);
  --text-primary: #e6f1ff;
  --text-secondary: #8892b0;
  --text-muted: #495670;
  --gold: #f5a623;
  --white: #ffffff;
  
  /* Fonts */
  --font-headings: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  --transition-slow: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(3, 10, 22, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

header.scrolled {
  height: 70px;
  background-color: rgba(3, 10, 22, 0.95);
  box-shadow: 0 10px 30px -10px rgba(2, 6, 12, 0.7);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--white) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  flex-direction: column;
}

.logo-text span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  -webkit-text-fill-color: var(--text-secondary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

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

.nav-links a:hover {
  color: var(--accent);
}

.nav-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(100, 255, 218, 0.05);
}

.nav-btn:hover {
  background-color: rgba(100, 255, 218, 0.1);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at center, rgba(10, 25, 47, 0.4) 0%, var(--bg-primary) 100%), 
              url('assets/hero_bg.png') no-repeat center center/cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(3, 10, 22, 0.4) 0%, var(--bg-primary) 95%);
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  color: var(--accent);
  background-color: rgba(100, 255, 218, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  font-weight: 500;
  border: 1px solid rgba(100, 255, 218, 0.25);
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title span {
  color: var(--accent);
  background: linear-gradient(to right, var(--accent) 40%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 550px;
  animation: fadeInUp 1s ease-out;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: fadeInUp 1.2s ease-out;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent);
  box-shadow: 0 10px 25px -10px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Sections General */
section {
  padding: 100px 0;
  position: relative;
}

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

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--accent);
  font-family: var(--font-headings);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* About Section */
.about {
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img-decor {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: 8px;
  z-index: 1;
}

.about-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px -15px rgba(2, 6, 12, 0.8);
}

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

.about-content p {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

/* Packages Section */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-slow);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 255, 218, 0.3);
  box-shadow: 0 20px 40px -20px rgba(2, 6, 12, 0.9);
  background-color: var(--bg-card-hover);
}

.package-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.package-card:hover .package-image {
  scale: 1.05;
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--bg-primary);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.package-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.package-location {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.package-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.package-features li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-price {
  display: flex;
  flex-direction: column;
}

.package-price span {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.package-price h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
}

.package-price h4 span {
  color: var(--accent);
  text-transform: none;
  font-size: 1.4rem;
}

.package-btn {
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.package-btn:hover {
  background-color: var(--accent);
  color: var(--bg-primary);
}

/* Simulator Section */
.simulator {
  background-color: var(--bg-secondary);
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px -25px rgba(2, 6, 12, 0.8);
}

.simulator-form-side {
  padding: 3rem;
}

.simulator-summary-side {
  background-color: rgba(10, 25, 47, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(100, 255, 218, 0.15);
}

.addons-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.addon-checkbox {
  display: none;
}

.addon-label {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.addon-label:hover {
  border-color: rgba(100, 255, 218, 0.2);
}

.addon-checkbox:checked + .addon-label {
  border-color: var(--accent);
  background-color: rgba(100, 255, 218, 0.05);
}

.addon-title {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.addon-price {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 0.25rem;
}

.summary-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-items {
  list-style: none;
  margin-bottom: 2rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.summary-item span:first-child {
  color: var(--text-secondary);
}

.summary-item span:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

.summary-total {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total h3 {
  font-size: 1rem;
  color: var(--text-primary);
}

.summary-total-price {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-headings);
}

.btn-book-now {
  width: 100%;
  background-color: var(--accent);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-book-now:hover {
  background-color: transparent;
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  outline: 1px solid var(--accent);
}

/* Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  box-shadow: 0 5px 15px -5px var(--accent-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(2, 6, 12, 0.7);
  transition: var(--transition-slow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(3, 10, 22, 0.9) 0%, rgba(3, 10, 22, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-fast);
}

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

.gallery-item-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.gallery-item-tag {
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--bg-secondary);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: var(--transition-slow);
}

.testimonial-card {
  min-width: 100%;
  padding: 3rem;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.testimonial-quote {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: -40px;
  left: 0;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-author-meta {
  font-size: 0.8rem;
  color: var(--accent);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-btn {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background-color: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 2.5rem;
}

.contact-details li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background-color: rgba(100, 255, 218, 0.1);
  color: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.contact-text h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-text p {
  font-size: 0.9rem;
}

.safety-note {
  background-color: rgba(245, 166, 35, 0.05);
  border-left: 3px solid var(--gold);
  padding: 1.2rem;
  border-radius: 0 6px 6px 0;
}

.safety-note h4 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.safety-note p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-form {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px -15px rgba(2, 6, 12, 0.8);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact-form .btn-submit {
  width: 100%;
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: #020710;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-socials a:hover {
  color: var(--accent);
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .simulator-grid {
    grid-template-columns: 1fr;
  }
  
  .simulator-summary-side {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: var(--transition-slow);
    z-index: 999;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .packages-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-row, .addons-list {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
