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

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

:root {
  --color-charcoal: #1A1A1A;
  --color-orange: #FF4500;
  --color-silver: #A9A9A9;
  --color-navy: #001F3F;
  --color-white: #FFFFFF;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1 {
  font-family: 'Anton', sans-serif;
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 20px;
}

h2 {
  font-family: 'Anton', sans-serif;
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--color-orange);
}

h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

strong {
  color: var(--color-orange);
  font-weight: 700;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--color-charcoal) 0%, rgba(26,26,26,0.95) 100%);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.navbar-brand {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-orange);
  text-decoration: none;
  letter-spacing: 1px;
}

.navbar-brand:hover {
  color: var(--color-white);
}

.nav-link {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: var(--color-orange);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  margin-top: 70px;
  width: 100%;
  background-color: var(--color-navy);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

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

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

.section-dark {
  background-color: rgba(0, 31, 63, 0.3);
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cards */
.card-nutrient {
  background-color: rgba(255, 69, 0, 0.05);
  border: 2px solid var(--color-orange);
  border-radius: 0;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.card-nutrient:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(255, 69, 0, 0.3);
  border-color: var(--color-white);
}

.card-nutrient img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

/* Table */
.table-nutrients {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.table-nutrients thead {
  background-color: var(--color-orange);
}

.table-nutrients th {
  color: var(--color-charcoal);
  font-weight: 700;
  padding: 15px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
}

.table-nutrients td {
  padding: 15px;
  border-bottom: 1px solid var(--color-silver);
}

.table-nutrients tbody tr:hover {
  background-color: rgba(255, 69, 0, 0.1);
}

/* CTA Button */
.btn-cta {
  background-color: var(--color-orange);
  color: var(--color-charcoal);
  border: none;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
  width: 300px;
  height: 300px;
}

.btn-cta:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 69, 0, 0.4);
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-silver);
  color: var(--color-white);
  padding: 12px 15px;
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: rgba(255, 69, 0, 0.1);
  border-color: var(--color-orange);
  color: var(--color-white);
  outline: none;
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.form-control::placeholder {
  color: var(--color-silver);
}

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

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 60px 0 30px;
  border-top: 2px solid var(--color-orange);
  margin-top: 100px;
}

footer h3 {
  color: var(--color-orange);
  font-size: 16px;
  margin-bottom: 20px;
}

footer p {
  color: var(--color-silver);
  font-size: 14px;
  margin-bottom: 10px;
}

footer a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-white);
}

.footer-links {
  margin-top: 20px;
}

.footer-links a {
  display: inline-block;
  margin-right: 20px;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid var(--color-silver);
  padding-top: 30px;
  margin-top: 30px;
  text-align: center;
  color: var(--color-silver);
  font-size: 12px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.98);
  border-top: 2px solid var(--color-orange);
  padding: 20px;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  color: var(--color-silver);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto Condensed', sans-serif;
}

.btn-accept {
  background-color: var(--color-orange);
  color: var(--color-charcoal);
}

.btn-accept:hover {
  background-color: var(--color-white);
}

.btn-reject {
  background-color: transparent;
  border: 1px solid var(--color-silver);
  color: var(--color-silver);
}

.btn-reject:hover {
  background-color: var(--color-silver);
  color: var(--color-charcoal);
}

.btn-policy {
  background-color: transparent;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
}

.btn-policy:hover {
  background-color: var(--color-orange);
  color: var(--color-charcoal);
}

/* Disclaimer */
.disclaimer-box {
  background-color: rgba(255, 69, 0, 0.1);
  border-left: 4px solid var(--color-orange);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0;
}

.disclaimer-box strong {
  display: block;
  margin-bottom: 10px;
}

/* Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-6,
.col-lg-4,
.col-lg-6 {
  padding-right: 15px;
  padding-left: 15px;
}

.col-md-6 {
  width: 100%;
}

.col-lg-4 {
  width: 100%;
}

.col-lg-6 {
  width: 100%;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

/* Responsive */
@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
  
  .cookie-content {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .col-lg-4 {
    width: 33.333%;
  }
  
  .col-lg-6 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero img {
    max-height: 400px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .btn-cta {
    padding: 12px 30px;
    font-size: 12px;
  }
}
