html {
  scroll-behavior: smooth;
}

/* Font Face for Blauer Nue */
/* ===== Blauer Nue Font Setup ===== */
@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Regular.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Medium.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-SemiBold.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Bold.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-ExtraBold.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Heavy.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Heavy.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #FFFBF9;
  --accent: #ff473a;
  /* More vibrant red-orange */
  --dark: #2d2d2d;
  --text: #4a4a4a;
  --light-bg: #F97929;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Blauer Nue','Poppins', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  /* Prevent scrollbars from absolute elements */
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.about-title,
.how-title,
.cta-title,
.plan-name,
.blog-title,
.feature-title,
.advantage-title {
  font-family: 'Blauer Nue', Arial, Helvetica, sans-serif;
}


/* Remove default background on body to apply properly */
html {
  height: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Hero Unified Styles */
.hero-header-wrapper {
  position: relative;
  background:#FFFBF9;
  overflow: hidden;
   background-image: url('images/Dmenus\ Bg2.png');
  background-position: center;
  background-size: cover;
}

.site-header {
  padding: 10px 0;
  background: transparent;
  position: relative;
 
  z-index: 10;
}



.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  position: relative;
  z-index: 10;
}

/* Replicate the logo icon with CSS - REMOVED for image logo */
/*
.logo::before {
  content: '€';
  display: inline-flex;
  ...
}
*/

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #3F070C;
  font-family: 'Blauer Nue';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  text-decoration: none;
  opacity: 0.5;
}

.nav-links a:hover {
  opacity: 1;
}
.nav-links a.active {
  opacity: 1;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  color: #3F070C;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #3b0e0e;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.desktop-only {
  display: inline-block;
}

.btn {
  display: inline-block;
  padding: 16px;
  border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 26, 26, 0.4);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-cta {
 border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  color: #FFF;
font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
}

.btn-primary {
border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  color: #FFF;
font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
}

.hero {
  padding: 40px 0 80px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

/* Full Dotted Grid Background */
/* Moved to .hero-header-wrapper */

.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-left {
  flex: 1.2;
}

.hero-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 64px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 64px */
  margin-bottom: 20px;
  white-space: nowrap;
}

.hero-sub {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 148%; /* 23.68px */
  margin-bottom: 20px;
  
}

.hero-right {
  flex: 1;
}

.mockup {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.mockup img {
  width: 500px;
  height: 430px;
  display: block;
  border-radius: 40px;
}

/* Dots decorations removed as we use body background */
/* Corner dotted decorations */
.dot-corner {
  position: absolute;
  width: 300px;
  height: 300px;
  pointer-events: none;
  background-image: radial-gradient(var(--accent) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 2;
  z-index: -1;
}

.dot-tl {
  top: 0;
  left: 0;
  -webkit-mask-image: radial-gradient(circle at top left, black, transparent 60%);
  mask-image: radial-gradient(circle at top left, black, transparent 60%);
}

.dot-tr {
  top: 0;
  right: 0;
  -webkit-mask-image: radial-gradient(circle at top right, black, transparent 60%);
  mask-image: radial-gradient(circle at top right, black, transparent 60%);
}

.dot-bl {
  bottom: 0;
  left: 0;
  -webkit-mask-image: radial-gradient(circle at bottom left, black, transparent 60%);
  mask-image: radial-gradient(circle at bottom left, black, transparent 60%);
}

.dot-br {
  bottom: 0;
  right: 0;
  -webkit-mask-image: radial-gradient(circle at bottom right, black, transparent 60%);
  mask-image: radial-gradient(circle at bottom right, black, transparent 60%);
}

@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 42px;
  }

  .mockup {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px  ;
  }

  .main-nav {
    flex-direction: row;
    gap: 15px;
    justify-content: end;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    gap: 30px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 24px;
    font-weight: 700;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .desktop-only {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Tabs Responsiveness */
@media (max-width: 768px) {
  .tabs-container {
    padding: 15px 0;
    margin-bottom: 40px;
  }

  .tabs-bar {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding: 8px 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .tabs-bar::-webkit-scrollbar {
    display: none;
  }

  .tab-item {
    padding: 10px 18px;
    flex-shrink: 0;
  }

  .section-title {
    font-size: 32px;
  }
}

/* Section */
.contact {
  padding: 80px 20px;
  position: relative;
}

/* Optional subtle dotted background */
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#f97829 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
  pointer-events: none;
}

.contact .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.contact__header {
  text-align: center;
  margin-bottom: 60px;
}

.contact__badge {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid rgba(63, 7, 12, 0.2);
  font-size: 14px;
  color: #3F070C;
  margin-bottom: 20px;
}

.contact__title {
  font-family: "Blauer Nue";
  font-size: 48px;
  font-weight: 600;
  color: #3F070C;
  line-height: 1.1;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact__row {
  display: flex;
  gap: 20px;
}

.contact__row input {
  flex: 1;
}

/* Inputs & Textarea */
.contact input,
.contact textarea {
  width: 100%;
  padding: 18px 20px;
 border-radius: 12px;
border: 1px solid #E8D7D4;

background: #FFF;
  font-size: 14px;
  outline: none;
  transition: border 0.3s ease;
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
}

.contact input:focus,
.contact textarea:focus {
  border-color: #F91C30;
}

.contact textarea {
  resize: none;
}

/* Button */
.contact__btn {
  margin-top: 10px;
  padding: 16px;
  
  border: none;
 border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  color: #FFF;
font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
}

.contact__btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .contact__row {
    flex-direction: column;
  }

  .contact__title {
    font-size: 28px;
  }
}

/* Section */
.contact-info {
  padding: 0 0 100px 0;
}

.contact-info .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Grid Layout */
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.contact-info__card {
  border-radius: 12px;
border: 1px solid var(--Gradient-Button, #F91C30);
background: #FFF;
  padding: 20px 20px 10px 20px;
}

/* Title */
.contact-info__title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 20px */
  margin-bottom: 20px;
}

/* Text */
.contact-info__card p {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
  margin: 5px 0;
}

/* Social Icons */
.contact-info__socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.contact-info__socials a {
  font-size: 22px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
  }
}


.cta-banner {
  position: relative;
  padding: 0 0 100px 0 ;
  background-color: #FFFBF9;;
  overflow: hidden;
}

.banner-img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -173px;
  background-image: url('images/Dmenus BgSmall.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Banner Box ABOVE dots */
.cta-banner__box {
  position: relative;
  z-index: 2;
  border-radius: 24px;
background: #3F070C;
  padding: 60px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}


.cta-banner__part {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-banner__middle {
  text-align: center;
}

.cta-banner__middle-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-banner__middle-text {
  font-size: 14px;
  opacity: 0.8;
}

.cta-banner__content {
  max-width: 600px;
}

.cta-banner__title {
  color: #F9F5EF;
font-family: "Blauer Nue";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
  margin-bottom: 15px;
}

.cta-banner__text {
  color: #F9F5EF;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
}


.cta-banner__btn {
  border-radius: 36px;
background: #F91C30;
padding: 16px;
  color: #FFF;

font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-banner__btn:hover {
  background: #e60000;
  transform: translateY(-2px);
}
@media (max-width: 1000px) {
  .banner-img{
    display: none;
  }
}

@media (max-width: 786px) {
  .cta-banner__title {
  color: #F9F5EF;
font-family: "Blauer Nue";
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
  margin-bottom: 15px;
}
  .cta-banner__box {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}


/* Footer Section Styles */
.site-footer {
  background: #FFECE5;
  /* Light peach background from design */
  padding: 2  0px 40px;
  color: #3b0e0e;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px 0 20px;
}

.footer-logo {
  height: 100px;
  /* Adjust based on logo proportions */
}

.footer-links-grid {
  display: flex;
  gap: 150px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 20px;
}

.footer-links a {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
  text-decoration: none;
  
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
  
}
.footer-copyright{
  color: #3F070C;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 14.88px */
}

.footer-legal a {
  text-decoration: none;
  color: #3F070C;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 14.88px */
  margin-left: 30px;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #3b0e0e;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    text-align: center;
  }

  .footer-links-grid {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal a {
    margin: 0 15px;
  }
  .footer-legal{
        display: flex;
        gap:10px;
        flex-direction: column;
  }
}