/* 
 * Velvet Syrups - Main Stylesheet
 * Dark themed, minimalist design
 */

/* Base Styles */
:root {
  --dark-bg: #121212;
  --darker-bg: #0a0a0a;
  --darkest-bg: black;
  --accent: #b68d40;
  --text: #f5f5f5;
  --text-muted: #aaaaaa;
  --section-padding: 80px 0;
  --container-padding: 0 20px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.dark-bg {
  background-color: var(--dark-bg);
}
.darker-bg {
  background-color: var(--darker-bg);
}
.darkest-bg {
  background-color: var(--darkest-bg);
}

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

a:hover {
  opacity: 0.8;
}

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

#header-logo {
  height: 50px;
  width: auto;  
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}
.subpage-section {
  padding: 40px 0;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem; 
}

/* Header & Navigation */
.navbar {
  background-color: var(--darker-bg);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.nav-brand {
  font-size: 1.8rem;
  font-weight: 700;
}

.brand-text {
  color: var(--text);
}

.brand-accent {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 8px 12px;
}

.cta-nav {
  background-color: var(--accent);
  border-radius: 4px;
  padding: 8px 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--text);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  min-height: 65vh;
  display: flex;
  align-items: center;
  @media (max-width: 500px) {
    padding: 20px 0;
  }
}

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


.hero-video {
  position: absolute;
  top: 0;
  /* left: 0; */
  right: 0;
  /* width: 100%; */
  aspect-ratio: 16/9;
  margin: 0 auto;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.no-bullet-list {
  list-style: none;     /* removes default bullets */
  padding-left: 0;      /* removes default indent */
}

.bullet-img {
  width: 27px;
  height: auto;
  margin: 5px 10px 5px 0;
}
.hero-badge {
  height: 100px;
  width: auto;
  margin-right: 30px;
}


.half-img-section {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.half-img {
  width: 50%;
  object-fit: cover;
}

.rounded-img {
   border-radius: 30px;
}

/* Flavor section specific styles */
.flavor-content {
  flex: 1;
  max-width: 50%;
}

.flavor-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flavor-item {
  /* padding: 10px 0; */
}

.creator-content {
  flex: 1;
  max-width: 50%;
}

/* Make the flavors section responsive */
@media (max-width: 800px) {
  .half-img-section {
    flex-direction: column;
    gap: 30px;
  }
  .col-reverse {
    flex-direction: column-reverse;
  }
  .creator-content {
    max-width: 100%;
  }
  .half-img {
    width: 75%;
  }
  
  .flavor-content {
    max-width: 100%;
  }
  
  .right-img {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .half-img {
    width: 100%;
  }
}
/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

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

input, select, textarea {
  width: 100%;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--text);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* Footer */
.footer {
  background-color: var(--darker-bg);
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  margin-bottom: 15px;
  color: var(--accent);
}

.footer-column a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

/* Helper Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.ml-20 {
  margin-left: 20px;
}
.ml-40 {
  margin-left: 40px;
}

.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}

.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-center {
  justify-content: center;
}
.small-gap {
  gap: 10px;
}
.spaced {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.align-flex-end {
  align-items: flex-end;
}

.p5 {
  padding: 5px;
}
.p10 {
  padding: 10px;
}
.p20 {
  padding: 20px;
}
.pb-0 {
  padding-bottom: 0px;
}
.fs-2 {
  font-size: 2rem;
}
.fs-4 {
  font-size: 4rem;
}
.uppercase {
  text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 800px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--darker-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .footer-content {
    flex-direction: column;
  }
}
