@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.scroll-container {
  height: 100vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}
:root {
  /* Background */
  --bg-primary: #F4E6D8;
  --bg-secondary: #EBD5C3;
  --bg-tertiary: #7F3B2D;
  --bg-dark: #1C1C1C;

  /* Text */
  --text-title: #4A2E1F;
  --text-body: #6B4A3A;

  /* Buttons / accents */
  --btn-primary: #C57B3F;
  --btn-hover: #A8642F;
  --accent-light: #E7A76C;
}
* {
    margin: 0;
    padding: 0;
}
html, body {
  overflow-x: hidden;
}
body {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    height: 100vh;
    font-family: 'Raleway';
    background-color:#8E8376;
    color: var(--text-body);
    margin: 0;
    padding: 0;
}
h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: var(--text-title);
}

h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: var(--text-title);
}

h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--text-title);
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
}

small {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-body);
}
section {
  scroll-snap-align: start;
  height: 100vh; 
}
/* Header */
.hero-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  will-change: transform;
}
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 1000;
    box-sizing: border-box;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}
.logo {
  font-size: 24px;
  color: var(--text-title);
  text-decoration: none;
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  cursor: pointer;
  margin-right: 1%;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background-color: var(--text-title);
  border-radius: 2px;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 0 16px;
  position: relative;
  background-color: var(--bg-primary);
  z-index: 0;
  overflow: hidden;
  contain: layout paint;
}

.hero-title {
  font-weight: 700;
  font-size: 100px;
  line-height: 72px;
  color: var(--text-title);
  margin: 0;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-weight: 700;
  font-size: 100px;
  color: var(--bg-primary);
  background-color: var(--btn-primary);
  display: inline-block;       
  line-height: 0.75;              
  vertical-align: bottom;      
  margin-top: 0;          
  position: relative;
  z-index: 2;
  padding: 0 0;
}
.hero-subtitle {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;

  width: 0;
  max-width: 100%;

  transition: width 0.9s cubic-bezier(.22,.61,.36,1);
}
.hero-title span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1),
              opacity 0.7s ease;
}

.hero-title.animate span {
  transform: translateY(0);
  opacity: 1;
}
.hero-subtitle-wrapper {
  position: relative;
  display: inline-block;
  border: 12px solid var(--bg-primary);
  border-left: 30px solid var(--bg-primary);
  border-right: 30px solid var(--bg-primary);
  transform: rotate(-2deg); 
  box-sizing: border-box;
  z-index: 1;
}
.hero-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
  margin-top: 16px;
}

.hero-btn {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  background-color: var(--accent-light);
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  cursor: pointer;
  margin-top: 24px; 
  transition: background 0.2s ease;
  color: var(--text-title);
}

.hero-btn:hover {
  background-color: var(--btn-primary);
}
.hero-img {
  position: absolute;
  width: 200px; 
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.img1 {
  top: 5%;
  left: 15%;
  transform: rotate(-10deg) scale(1.5);
}
.img2 {
  top: 40%;
  right: 10%;
  transform: rotate(10deg) scale(1.5);
}

.img3 {
  bottom: 15%;
  left:5%;
  transform: rotate(5deg) scale(1.5);
}
.hero-img-mobile {
  display: none;
  position: absolute;
  width: 140px;
  height: auto;
  pointer-events: none;
}
/* Section 2 */
.section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background-color: var(--bg-tertiary);
  padding: 0 16px;
  scroll-snap-align: start;
  position: relative;
  z-index: 1000;
}

.section-lorem-top {
  font-weight: 700;
  font-size: 75px;
  line-height: 56px;
  color: var(--bg-primary);
  margin: 0;
  transition: color 0.6s ease;
}

.section-subtitle {
  font-weight: 700;
  font-size: 75px;
  color: var(--bg-tertiary);
  background-color: var(--accent-light);
  display: inline-block;
  line-height: 1;
  vertical-align: bottom;
  overflow: hidden;
  width: 0;
  transition: width 0.8s ease;
  margin-top: 0;
  white-space: nowrap;
}
.section-lorem-bottom {
  font-weight: 700;
  font-size: 75px;
  line-height: 56px;
  color: var(--bg-primary);
  margin-top: -5px;
  transition: color 0.6s ease; 
}
.text-subtitle-wrapper {
  position: relative;
  display: inline-block;
  border: 12px solid var(--bg-tertiary);
  border-left: 135px solid var(--bg-tertiary);
  border-right: 135px solid var(--bg-tertiary);
  transform: rotate(2deg); 
  box-sizing: border-box;
  z-index: 1;
}

/* ========================= */
/*        SECTION GALLERY    */
/* ========================= */

.section-gallery {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-primary);
  overflow: hidden;
  padding-left: 0;
}

.gallery-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.gallery-content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: transform 0.25s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.text-left {
  width: 40%;
  margin-left: 30px;
}

.gallery-title {
  font-size: 90px;
  line-height: 85px;
  font-weight: 700;
  color: var(--text-title);
}

.gallery-track {
  width: 60%;
  display: flex;
  gap: 60px;
  align-items: center;
  transform: translateX(150px);
}

.gallery-item {
  position: relative;
  display: inline-block;
  height: 420px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.gallery-item:nth-child(odd) {
  transform: rotate(-8deg);
}

.gallery-item:nth-child(even) {
  transform: rotate(6deg);
}

.gallery-item img:first-child {
  height: 420px;   
  width: auto;
  display: block;
  border-radius: 25px;
}


.gallery-item:nth-child(odd):hover {
  transform: rotate(-8deg) scale(1.08);
}

.gallery-item:nth-child(even):hover {
  transform: rotate(6deg) scale(1.08);
}

.hover-icon {
  position: absolute;
  width: 260px;             
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.scroll-container {
  overflow-x: hidden;
}
.gallery-item:hover .hover-icon {
  opacity: 1;
}
.gallery-title span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1),
              opacity 0.7s ease;
}

.gallery-title.animate span {
  transform: translateY(0);
  opacity: 1;
}
.gallery-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 32px;
    font-weight: 600;
    color: white;
    z-index: 3;
    }

/* =========================
   SECTION RECIPES
========================= */

.section-recipes {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8vw;
  background-color: var(--bg-primary);
}

/* BACKGROUND IMAGE */
.recipes-bg {
  position: absolute;
  inset: 0;
  background-image: url('media/gallery/Recipes.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.recipes-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* CONTENT */
.recipes-content {
  position: relative;
  z-index: 2;
  text-align: right;
  max-width: 700px;
}

/* TITLU */
.recipes-title {
  font-size: 90px;
  line-height: 85px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}


.recipes-subtitle-wrapper {
  display: inline-block;
  transform: rotate(2deg);
  background: var(--accent-light);
  margin-top: -20px;
}

.recipes-subtitle {
  font-size: 90px;
  font-weight: 700;
  color: white;
  width: auto;
  line-height: 0.75;
  background: var(--accent-light);
}
.recipes-title span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1),
              opacity 0.7s ease;
}

.recipes-title.animate span {
  transform: translateY(0);
  opacity: 1;
}

/* SUBTITLE ANIMATION */
.recipes-subtitle {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  transition: width 0.9s cubic-bezier(.22,.61,.36,1);
}
/* =========================
   SECTION STATEMENTS
========================= */

.section-statements {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 40px 0;
  background: var(--bg-dark);
}

.statement {
  height: 18%;               
  width: 50%;                
  margin: 0 auto;           
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  font-weight: 700;
  color: var(--bg-primary);
  text-align: center;
  padding: 0px;
  --rotate: 0deg;
  --shift: 0px;
  transform: rotate(var(--rotate)) translateX(var(--shift)) scale(0);
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1), opacity 0.4s ease;
}
.statement-1 {
  color: var(--bg-dark);
  --rotate: -3deg;
  --shift: -40px;
  border: 5px solid var(--bg-dark);
  background-color: var(--bg-dark);
}

.statement-2 {
  background-color: var(--bg-dark);
  --rotate: 2deg;
  --shift: 30px;
  border: 5px solid var(--bg-dark);
}

.statement-3 {
  background-color: var(--bg-dark);
  color: var(--bg-dark);
  --rotate: -2deg;
  --shift: -20px;
  border: 5px solid var(--bg-dark);
}

.statement-4 {
    --rotate: 3deg;
    --shift: 40px;
  background-color: var(--bg-dark);
  border: 5px solid var(--bg-dark);
}
#color1 {
    background: var(--accent-light);
}
#color2 {
    background: #C57B3F;
}
#color3 {
    background: var(--bg-primary);
}
#color4 {
    background: #7F3B2D;
}
/* =========================
   STATEMENT ANIMATION
========================= */

.statement-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1), opacity 0.4s ease;
}

.section-statements.animate .statement {
  transform: rotate(var(--rotate)) translateX(var(--shift)) scale(1);
  opacity: 1;
}

.section-statements.animate .statement-1 {
  transition-delay: 0.1s;
}

.section-statements.animate .statement-2 {
  transition-delay: 0.3s;
}

.section-statements.animate .statement-3 {
  transition-delay: 0.5s;
}

.section-statements.animate .statement-4 {
  transition-delay: 0.7s;
}

/* =========================
   TRAILER SECTION
========================= */
.section-trailer {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.trailer-container {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.trailer-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trailer-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
}

.trailer-play {
  position: absolute;
  inset: 0;
  margin: auto;

  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: white;
  font-size: 40px;
  cursor: pointer;

  transition: transform 0.3s ease, background 0.3s ease;
}

.trailer-play:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.25);
}

.rotating-text {
  position: absolute;
  inset: 0;
  animation: rotateText 12s linear infinite;
}

.rotating-text span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
  font-size: 14px;
  letter-spacing: 3px;
  color: white;
}

@keyframes rotateText {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* =========================
   DISCORD SECTION
========================= */
.section-discord {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
}

.discord-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.discord-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding-left: 8%;
  color: var(--bg-primary);
}

.discord-title {
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  transition: width 1s cubic-bezier(.22,.61,.36,1);
  color: var(--bg-primary);
}

.discord-subtitle-wrapper {
  display: inline-block;
  transform: rotate(-3deg);
  overflow: hidden;
  margin-bottom: 30px;
  margin-top: -20px;
  border: 15px solid var(--bg-dark);
  background: var(--bg-dark);
}

.discord-subtitle {
  font-size: 40px;
  font-weight: 700;
  white-space: nowrap;
  width: 0;
  overflow: hidden;
  transition: width 0.9s cubic-bezier(.22,.61,.36,1);
  color: var(--bg-dark);
  background: #5865F2;
  display: inline-block;
  padding: 12px 30px;
}

.discord-text {
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
  color: var(--bg-secondary);
}

.discord-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #5865F2;
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.discord-btn:hover {
  transform: translateY(40px) scale(1.05);
  background: #4752c4;
}

.section-discord.animate .discord-title {
  width: 100%;
}

.section-discord.animate .discord-subtitle {
  width: 100%;
  transition-delay: 0.2s;
}

.section-discord.animate .discord-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.section-discord.animate .discord-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.discord-title {
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
  color: var(--bg-primary);
  white-space: nowrap;
}

.discord-title span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1),
              opacity 0.7s ease;
}

.section-discord.animate .discord-title span {
  transform: translateY(0);
  opacity: 1;
}
.discord-subtitle {
  font-size: 40px;
  font-weight: 700;
  white-space: nowrap;

  width: 0;
  overflow: hidden;

  transition: width 0.9s cubic-bezier(.22,.61,.36,1);
  color: var(--bg-dark);
  background: #5865F2;
  display: inline-block;
  padding: 12px 30px;
}

.section-discord.animate .discord-subtitle {
  width: 100%;
  transition-delay: 0.3s;
}
.discord-text {
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--bg-secondary);

  transform: scale(0);
  opacity: 0;
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1),
              opacity 0.4s ease;
}

.discord-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #5865F2;
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;

  transform: scale(0);
  opacity: 0;
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1),
              opacity 0.4s ease;
}

.section-discord.animate .discord-text {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.6s;
}

.section-discord.animate .discord-btn {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.8s;
}
/* =========================
   FOOTER
========================= */

.site-footer {
  background: var(--bg-dark);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(.22,.61,.36,1);
  background: #2b2b2b;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.footer-btn:hover {
  transform: translateY(-10px) scale(1.1);
}

/* Platform colors */

.footer-btn.youtube:hover {
  background: #FF0000;
}

.footer-btn.tiktok:hover {
  background: #000000;
}

.footer-btn.discord:hover {
  background: #5865F2;
}

.footer-btn.steam:hover {
  background: #1B2838;
}

/* Copyright */

.footer-copyright {
  font-size: 28px;
  font-weight: 700;
  color: var(--bg-primary);
  letter-spacing: 1px;
  font-family: 'Raleway';
}
.section-footer {
  height: 100vh;
  scroll-snap-align: start;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 50px;
}

.footer-btn {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #2b2b2b;
  color: var(--bg-primary);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.footer-btn:hover {
  transform: translateY(-12px) scale(1.15);
}

.footer-btn.youtube:hover { background: #FF0000; }
.footer-btn.tiktok:hover { background: #000000; }
.footer-btn.discord:hover { background: #5865F2; }
.footer-btn.steam:hover { background: #1B2838; }

.footer-copyright {
  font-size: 12px;
  font-weight: 100;
  color: #89807C;
  letter-spacing: 1px;
}
/* =========================
   FULLSCREEN MENU
========================= */

.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
  z-index: 999;
}

.fullscreen-menu.active {
  transform: translateY(0);
}

.menu-content {
  text-align: center;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.menu-links a {
  font-size: 60px;
  font-weight: 700;
  color: var(--bg-primary);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.menu-links a:hover {
  text-decoration: underline;
}

.menu-socials {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.menu-socials a {
  padding: 14px 30px;
  border-radius: 50px;
  color: var(--bg-primary);
  font-weight: 100;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-socials a:hover {
  text-decoration: underline;
}

/* Hamburger Animation */

.menu-toggle {
  z-index: 2000;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.menu-toggle.active span:nth-child(2) {
  transform: rotate(-45deg) translateY(-7px);
}

.menu-toggle span {
  transition: all 0.3s ease;
}
/* =========================
   HAMBURGER → X PERFECT
========================= */

.menu-toggle {
  position: relative;
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--text-title);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* poziționare linii */
.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  bottom: 0;
}

/* ===== ACTIVE STATE ===== */

.menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  background: var(--bg-primary);
  height: 100vh;
}

.contact-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8vw;
  gap: 60px;
}

/* LEFT SIDE */

.contact-left {
  width: 45%;
}

.contact-title {
  font-size: 90px;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 30px;
}

.contact-paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-body);
  max-width: 500px;
}

.contact-email {
  font-size: 18px;
  font-weight: 600;
}

.contact-email a {
  color: var(--btn-primary);
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* RIGHT SIDE CARD */

.contact-card {
  width: 45%;
  background: #DCC2A8;
  padding: 50px;
  border-radius: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--btn-primary);
}

.contact-btn {
  margin-top: 20px;
  padding: 16px;
  border-radius: 50px;
  border: none;
  background: var(--accent-light);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--btn-primary);
  transform: translateY(-4px);

}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px;
  border-radius: 12px;
  border: 0;
  font-family: 'Raleway';
  font-size: 14px;
  outline: none;
  transition: border 0.3s ease, background 0.3s ease;
  background-color: var(--bg-primary);
  color: var(--text-body);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--btn-primary);
  background-color: #fff;
}

.contact-form textarea {
  resize: none;
}

.contact-btn {
  margin-top: 20px;
  padding: 16px;
  border-radius: 50px;
  border: none;
  background: var(--btn-primary);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-title);
}

.contact-btn:hover {
  background: var(--btn-hover);
  transform: translateY(-4px);
}
.contact-title span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}
.contact-title span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.animate-text, .contact-email {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-text.show, .contact-email.show {
  opacity: 1;
  transform: translateY(0);
}
/* --- FAQ --- */
.faq-section {
  padding: 100px 20px;
  text-align: center;
  background-color: var(--bg-primary);
}


.faq-titles {
  display: inline-block;
  margin-bottom: 60px;
}

.faq-title-main {
  font-size: 100px;
  font-weight: 700;
  margin: 0;
}

.faq-title-accent {
  font-size: 100px;
  font-weight: 700;
  margin: 0;
  transform: rotate(-3deg);
  background-color: var(--accent-light);
  display: inline-block;
  line-height: 0.75;
  margin-top: 10px;
  color: var(--bg-primary);
}

.faq-cards-vertical {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 20px;          
  max-width: 600px;   
  margin: 0 auto;
}

.faq-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 100%;       
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
}

.faq-question {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  font-size: 1rem;
  text-align: center;
}

.faq-card:hover .faq-answer {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1200px) {
  .text-left {
    width: 40vw;
  }
  .gallery-track img {
    max-height: 60vh;
  }
}
@media only screen and (max-width: 768px) { 
    html, body {
    overflow-x: hidden;
    }
    .hero-subtitle, .hero-title {
        font-size: 50px;
    }
    .section-lorem-bottom,.section-lorem-top, .section-subtitle {
        font-size: 40px;
    }
    .text-subtitle-wrapper {
        border: 0;
    }
    .section-gallery {
    height: auto;
    padding: 60px 20px;
    display: block;
    }

    .gallery-wrapper {
      display: block;
      width: 100%;
      height: auto;
    }

    .gallery-content {
      display: block;
      width: 100%;
      height: auto;
      transform: none !important;
    }

    .text-left {
      width: 100%;
      text-align: center;
      margin-bottom: 30px;
    }

    .gallery-title {
      font-size: 36px;
      line-height: 1.2;
    }

    .gallery-track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 0;
    }

    .gallery-track::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      flex: 0 0 100%;
      scroll-snap-align: center;
      display: flex;
      justify-content: center;
      transform: none !important;
      height: 100%;
      overflow: hidden;
    }
    .gallery-label {
        font-size: 24px;
    }
    .gallery-item img:first-child {
      width: 100%;
      height: auto;
    }

    .gallery-content {
      display: block !important; 
      width: 100% !important;
      height: auto !important;
      transform: none !important;
    }

    .gallery-wrapper {
      display: block !important;
    }

    .text-left {
      width: 100% !important;
      margin-left: 0px;
    }
    .gallery-track {
    width: 100% !important;
    transform: none !important;
    }

    .hero-img {
      display: none;
    }
    .hover-icon {
        width: 45%;
        z-index: 2;
    }

    .hero-img-mobile {
      display: block;
    }

    .mobile1 {
      top: 10%;
      right: 5%;
      transform: rotate(-15deg) scale(2);
    }

    .mobile2 {
      bottom: 5%;
      left: 75%;
      transform: rotate(10deg) scale(2);
    }
    .mobile3 {
      bottom: 5%;
      right: 75%;
      transform: rotate(10deg) scale(2);
    }
    .section-recipes {
    justify-content: flex-start;
    align-items: flex-start;     
    padding: 80px 20px 0 20px;
  }

  .recipes-content {
    text-align: left;
    max-width: 100%;
  }

  .recipes-title {
    font-size: 42px;
    line-height: 1.1;
  }

  .recipes-subtitle {
    font-size: 42px;
  }
  .recipes-subtitle-wrapper {
  display: inline-block;
  transform: rotate(-2deg);
  margin-top: 0px;
}
.section-statements {
    gap: 20px;
    padding: 20px 0;
  }

  .statement {
    width: 50%;
    height: 16%;
    font-size: 28px;
  }
  .discord-content {
    width: 100%;
    padding: 0 30px;
  }

  .discord-title {
    font-size: 50px;
    white-space: normal;
  }

  .discord-subtitle {
    font-size: 28px;
  }
  .discord-subtitle-wrapper {
    width: 80%;
    margin-top: 0;
  }
  .statement {
    transform: rotate(var(--rotate)) translateX(var(--shift)) scale(1);
    opacity: 1;
  }
  .menu-links a {
    font-size: 40px;
  }

  .menu-socials {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .menu-socials a {
    width: 200px;
    text-align: center;
  }
  @media (max-width: 768px) {

  .contact-section {
    flex-direction: column;
    height: auto;
    padding: 120px 30px 60px 30px;
  }

  .contact-left,
  .contact-card {
    width: 100%;
  }

  .contact-title {
    font-size: 50px;
  }
  .faq-title-main {
  font-size: 40px;
}

.faq-title-accent {
  font-size: 40px;

}
.recipes-bg {
  background-image: url('media/gallery/RecipesMOBILE.png');
}
}