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

:root {
  --c-amber: #F5A500;
  --c-amber-lt: #FFD166;
  --c-amber-dk: #C47F00;
  --c-black: #1A1A1A;
  --c-cream: #FFFBF0;
  --c-mid: #6B6B6B;
  --f-display: 'Syne', sans-serif;
  --f-body: 'DM Sans', sans-serif;
  --r-btn: 3px;
  --r-card: 6px;
  --shadow-sm: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  background: #1A1A1A;
  color: white;
  overflow-x: hidden;
  width: 100%;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background: url("assets/grain.png");
  pointer-events: none;
  z-index: 100;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  padding: 18px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.logo-mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.logo-text {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}

.logo-sun {
  color: #ffffff;
}

.logo-flower {
  color: var(--c-amber);
}

.logo-media {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: 0.3s ease;
}

nav a:hover {
  opacity: 1;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 6px;
  cursor: pointer;
  z-index: 1001;
  width: auto;
  box-shadow: none;
}

.hamburger:hover {
  transform: none;
  box-shadow: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, background 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--c-amber);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--c-amber);
}

/* MOBILE NAV OVERLAY */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

/* Decorative faint sunflower watermark */
.mobile-nav::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(245, 165, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.mobile-nav-links a {
  color: white;
  text-decoration: none;
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 7vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 10px 20px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s ease, transform 0.45s ease, color 0.3s ease;
}

.mobile-nav.open .mobile-nav-links a {
  opacity: 0.7;
  transform: translateY(0);
}

.mobile-nav.open .mobile-nav-links a:hover {
  opacity: 1;
  color: var(--c-amber);
}

/* Staggered entrance */
.mobile-nav.open .mobile-nav-links a:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { transition-delay: 0.14s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { transition-delay: 0.20s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { transition-delay: 0.26s; }
.mobile-nav.open .mobile-nav-links a:nth-child(5) { transition-delay: 0.32s; }
.mobile-nav.open .mobile-nav-links a:nth-child(6) { transition-delay: 0.38s; }

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: radial-gradient(circle at top, #2a1500, #1A1A1A 70%);
  padding: 0 8vw;
  min-height: 600px;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 500px;
  width: 45%;
}

.tag {
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 15px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 30px;
  display: inline-block;
  font-size: 0.75rem;
}

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #ffffff;
}

.hero h1 span {
  color: var(--c-amber);
  display: inline;
}

.sub {
  max-width: 400px;
  opacity: 0.7;
  line-height: 1.7;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 300;
}

/* REALISTIC SUNFLOWER */
.sunflower-center-container {
  position: relative;
  z-index: 2;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.sunflower-main {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 0 50px rgba(218, 165, 32, 0.4))
    drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3)) saturate(1.1) contrast(1.05);
  animation: sway 5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes sway {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(2deg);
  }
}

button {
  padding: 18px 34px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-amber), var(--c-amber-lt));
  color: #1A1A1A;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 165, 0, 0.3);
}

/* REALISTIC SUN */
.sun {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: absolute;
  top: 10%;
  background: radial-gradient(circle at 35% 35%, #FFE566, #F5A500, #C47F00);
  box-shadow:
    0 0 100px rgba(245, 165, 0, 0.9),
    0 0 200px rgba(245, 120, 0, 0.5),
    inset -30px -30px 60px rgba(200, 120, 0, 0.3);
  transition: 2s ease;
}

/* PANELS */
.panel {
  min-height: 100vh;
  padding: 120px 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.glass {
  width: 100%;
  max-width: 1000px;
  padding: 70px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.glass h2 {
  font-family: var(--f-display);
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.glass p {
  opacity: 0.8;
  line-height: 1.8;
  max-width: 700px;
  font-size: 1.1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.card {
  padding: 40px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.5s ease;
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(245, 165, 0, 0.08);
  border-color: rgba(245, 165, 0, 0.2);
}

.card h3 {
  font-family: var(--f-display);
  color: var(--c-amber);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.card p {
  opacity: 0.7;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 30px 20px;
  opacity: 0.6;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* SERVICES SECTION */
.services-container {
  width: 100%;
  max-width: 1200px;
}

.services-container h2 {
  font-family: var(--f-display);
  font-size: 4rem;
  margin-bottom: 60px;
  color: #ffffff;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  width: 100%;
}

.service-item {
  padding: 40px 30px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.5s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-15px);
  background: rgba(245, 165, 0, 0.08);
  border-color: rgba(245, 165, 0, 0.2);
  box-shadow: 0 20px 40px rgba(245, 165, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: inline-block;
}

.service-item h3 {
  font-family: var(--f-display);
  color: var(--c-amber);
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-item p {
  opacity: 0.7;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* BRANDS SECTION */
.brands {
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.brands-header {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 0 8vw 50px;
}

.brands-header h2 {
  font-family: var(--f-display);
  font-size: 4rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.brands-subtitle {
  opacity: 0.6;
  font-size: 1.1rem;
}

/* Marquee */
.brands-marquee {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 40px;
}

.marquee-row {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.scroll-left  { animation: marquee-left  55s linear infinite; }
.scroll-right { animation: marquee-right 55s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.brand-logo {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  padding: 16px;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.brand-logo:hover {
  transform: scale(1.06);
  border-color: var(--c-amber);
  box-shadow: 0 8px 30px rgba(245, 165, 0, 0.4);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* THEMES */
body.ultra {
  background: #1A1A1A;
}

body.ultra .tag,
body.ultra .hero h1 span,
body.ultra .card h3 {
  color: var(--c-amber);
}

/* ===== RESPONSIVE DESIGN ===== */

/* TABLETS (768px to 1024px) */
@media (max-width: 1024px) {
  .hamburger {
    display: none;
  }

  .navbar {
    padding: 15px 30px;
  }

  nav {
    gap: 20px;
  }

  nav a {
    font-size: 0.95rem;
  }

  .hero {
    flex-direction: column;
    padding: 100px 20px 0;
    justify-content: center;
    gap: 40px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    z-index: 4;
  }

  .sunflower-center-container {
    width: 100%;
    height: auto;
    min-height: 300px;
  }

  .sunflower-main {
    max-width: 320px;
  }

  .sun {
    width: 120px;
    height: 120px;
    top: 5%;
  }

  .tag {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .sub {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .panel {
    padding: 80px 20px;
  }

  .glass {
    padding: 50px;
  }

  .glass h2 {
    font-size: 2.5rem;
  }

  .glass p {
    font-size: 1rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card {
    padding: 30px;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  /* Brands marquee – tablet */
  .brands {
    padding-left: 0;
    padding-right: 0;
  }

  .brands-header {
    padding: 0 20px 40px;
  }

  .brands-header h2 {
    font-size: 2.8rem;
  }

  .brand-logo {
    width: 130px;
    height: 130px;
  }
}

/* MOBILE (480px to 767px) */
@media (max-width: 767px) {
  /* Show hamburger, hide desktop nav */
  .hamburger {
    display: flex;
  }

  .navbar nav {
    display: none;
  }

  .navbar {
    width: 95%;
    padding: 12px 20px;
    top: 10px;
    border-radius: 15px;
  }

  .logo-mark {
    width: 26px;
    height: 26px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  nav {
    gap: 15px;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero {
    min-height: 100vh;
    padding: 80px 15px 20px;
    gap: 30px;
  }

  .hero-content {
    width: 100%;
  }

  .tag {
    font-size: 0.65rem;
    padding: 6px 12px;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 15px;
  }

  .sub {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .sunflower-center-container {
    min-height: 250px;
  }

  .sunflower-main {
    max-width: 250px;
  }

  .sun {
    width: 100px;
    height: 100px;
    top: 3%;
  }

  .panel {
    padding: 60px 15px;
    min-height: auto;
  }

  .glass {
    padding: 35px 20px;
    border-radius: 25px;
  }

  .glass h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .glass p {
    font-size: 0.95rem;
  }

  .glass.big {
    padding: 40px 20px;
  }

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

  .card {
    padding: 25px;
  }

  .card h3 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  footer {
    font-size: 0.8rem;
    padding: 20px 15px;
  }

  /* Brands marquee – mobile */
  .brands {
    padding-left: 0;
    padding-right: 0;
  }

  .brands-header {
    padding: 0 15px 35px;
  }

  .brands-header h2 {
    font-size: 2rem;
  }

  .brands-marquee {
    gap: 14px;
  }

  .marquee-track {
    gap: 14px;
  }

  .brand-logo {
    width: calc(50vw - 26px);
    height: calc(50vw - 26px);
    padding: 12px;
    border-radius: 16px;
  }
}

/* SMALL PHONES (up to 480px) */
@media (max-width: 480px) {
  .navbar {
    width: 95%;
    padding: 10px 15px;
  }

  .logo-mark {
    width: 22px;
    height: 22px;
  }

  .logo-text {
    font-size: 0.85rem;
  }

  nav {
    gap: 10px;
  }

  nav a {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 100vh;
    padding: 70px 12px 20px;
    gap: 20px;
  }

  .tag {
    font-size: 0.6rem;
    padding: 5px 10px;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 10px;
  }

  .hero h1 span {
    display: block;
  }

  .sub {
    font-size: 0.8rem;
  }

  .sunflower-center-container {
    min-height: 200px;
  }

  .sunflower-main {
    max-width: 200px;
  }

  .sun {
    width: 80px;
    height: 80px;
    top: 2%;
  }

  .panel {
    padding: 50px 12px;
  }

  .glass {
    padding: 25px 15px;
    border-radius: 20px;
  }

  .glass h2 {
    font-size: 1.5rem;
  }

  .glass p {
    font-size: 0.9rem;
  }

  .cards {
    gap: 12px;
  }

  .card {
    padding: 20px;
  }

  button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  footer {
    font-size: 0.75rem;
  }

  /* Brands marquee – small phones */
  .brands {
    padding-left: 0;
    padding-right: 0;
  }

  .brands-header {
    padding: 0 12px 28px;
  }

  .brands-header h2 {
    font-size: 1.75rem;
  }

  .brands-marquee {
    gap: 12px;
  }

  .marquee-track {
    gap: 12px;
  }

  .brand-logo {
    width: calc(50vw - 22px);
    height: calc(50vw - 22px);
    padding: 10px;
    border-radius: 14px;
  }
}
