/* Main Stylesheet for Shopvelvet.shop - Undgå træthed gennem dagen */

/* Global styles */
:root {
  --primary-color: #4CAF50;
  --secondary-color: #FFEB3B;
  --accent-color: #FF9800;
  --light-color: #F1F8E9;
  --dark-color: #333333;
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #3b9c3f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: #e6d335;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 235, 59, 0.3);
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 15px auto 0;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header-scrolled {
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 600;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(241, 248, 233, 0.8), rgba(255, 255, 255, 0.6)), url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 80px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: var(--dark-color);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
}

.hero-btns {
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

.hero-img {
  position: absolute;
  bottom: 0;
  right: 5%;
  height: 70%;
  animation: float 6s ease-in-out infinite;
}

/* Why Proper Nutrition Section */
.nutrition-importance {
  background-color: var(--light-color);
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.nutrition-content h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
}

.nutrition-content p {
  margin-bottom: 20px;
}

.nutrition-infographic {
  position: relative;
  height: 400px;
}

.energy-icon {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.energy-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.energy-icon:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.energy-icon:nth-child(2) {
  top: 30%;
  left: 10%;
}

.energy-icon:nth-child(3) {
  top: 30%;
  right: 10%;
}

.energy-icon:nth-child(4) {
  bottom: 0;
  left: 30%;
}

.energy-icon:nth-child(5) {
  bottom: 0;
  right: 30%;
}

.energy-icon span {
  position: absolute;
  width: 200px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  top: 110%;
}

/* Top 5 Energy Foods Section */
.energy-foods {
  background-color: white;
}

.foods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.food-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
}

.food-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.food-img {
  height: 200px;
  overflow: hidden;
}

.food-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.food-card:hover .food-img img {
  transform: scale(1.1);
}

.food-content {
  padding: 20px;
}

.food-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.food-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.energy-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.energy-indicator i {
  margin-right: 5px;
  animation: arrowUp 2s infinite;
}

/* Timing Matters Section */
.timing-matters {
  background: linear-gradient(135deg, #f5f7fa, #e4e8ef);
}

.timing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.timing-card {
  background-color: white;
  width: 280px;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.timing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
  transition: var(--transition);
}

.timing-card:hover::before {
  width: 10px;
}

.timing-card .time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.timing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.timing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.timing-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.timing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.timing-cta {
  margin-top: 50px;
  text-align: center;
}

/* Mentor Section */
.mentor {
  background-color: white;
}

.mentor-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mentor-info {
  display: flex;
  flex-direction: column;
}

.mentor-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
  border: 5px solid var(--light-color);
  margin: 0 auto 30px;
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.mentor-content .position {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.mentor-content p {
  margin-bottom: 20px;
}

.pricing-plans {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 15px;
}

.pricing-title {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-cards {
  display: flex;
  gap: 30px;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  flex: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card .plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.price-card .price span {
  font-size: 1rem;
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.price-card ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* FAQ Section */
.faq {
  background-color: var(--light-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background-color: white;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-header i {
  color: var(--primary-color);
  transition: var(--transition);
}

.accordion-body {
  background-color: white;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion.active .accordion-body {
  padding: 0 20px 20px;
}

.accordion.active .accordion-header i {
  transform: rotate(180deg);
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, var(--primary-color), #2e7d32);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.newsletter h2 {
  color: white;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 30px;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: calc(100% - 10px);
  padding: 0 25px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #e08600;
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-details i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 20px;
}

.map {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.contact-form {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 15px;
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Footer Section */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
  max-width: 200px;
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-links h4 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #bbb;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  background-color: #222;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes arrowUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Responsive Styling */
@media screen and (max-width: 991px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .nutrition-grid,
  .mentor-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .nutrition-infographic {
    order: -1;
  }
  
  .pricing-cards {
    flex-direction: column;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 40px 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 0 0 20px;
    text-align: center;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-img {
    display: none;
  }
  
  .timing-card {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Policy Pages Styling */
.policy-container {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 40px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-container h1 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.policy-container h2 {
  color: var(--dark-color);
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.policy-container p,
.policy-container ul {
  margin-bottom: 15px;
}

.policy-container ul {
  padding-left: 20px;
}

.policy-container ul li {
  margin-bottom: 10px;
}

/* Success Page Styling */
.success-container {
  text-align: center;
  max-width: 600px;
  margin: 150px auto 80px;
  padding: 60px 40px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.success-container h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.success-container p {
  margin-bottom: 30px;
}

.back-home {
  margin-top: 20px;
}