* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Georgia, 'Times New Roman', serif;
    background: #080808;
    color: #f5f1e8;
  }
  
  .site-header {
    min-height: 110px;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050505;
    border-bottom: 2px solid #c7952d;
  }
  
  .logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
color: inherit;
  }
  
  .lion-logo {
    width: 70px;
    height: auto;
    display: block;
  }
  
  .big-lion-logo {
    width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 12px rgba(199, 149, 45, 0.35));
  }
  
  .logo-area h1 {
    font-size: 22px;
    color: #c7952d;
    line-height: 1.1;
  }
  
  nav {
    display: flex;
    gap: 35px;
  }
  
  nav a {
    color: #f5f1e8;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.25s ease;
  }
  
  nav a:hover {
    color: #b75cff;
  }
  
  nav a.active {
    color: #b75cff;  
}
  
  nav a.active::after,
  nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #c7952d;
  }
  
  .hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 8%;
    background:
      linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.82)),
      radial-gradient(circle at top, rgba(107,42,168,.35), transparent 35%),
      #080808;
  }
  
  .hero-content h2 {
    color: #c7952d;
    font-size: 64px;
    line-height: 1.08;
    margin-bottom: 25px;
  }
  
  .divider {
    width: 180px;
    height: 3px;
    background: #6b2aa8;
    margin: 0 auto 28px;
  }
  
  .tagline,
  .large-text {
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  
  .service-area {
    color: #c7952d;
    font-size: 22px;
    font-weight: bold;
    margin: 25px 0;
  }
  
  .hero-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  .gold-btn {
    background: #c7952d;
    color: #080808;
  }
  
  .purple-btn {
    background: #6b2aa8;
    color: #fff;
  }
  
  .page-section {
    min-height: calc(100vh - 110px);
    padding: 80px 8%;
    text-align: center;
    background:
      linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.88)),
      radial-gradient(circle at center, rgba(107,42,168,.22), transparent 45%),
      #080808;
  }
  
  .page-section h2 {
    color: #c7952d;
    font-size: 58px;
    margin-bottom: 20px;
  }
  
  .about-content {
    max-width: 1000px;    
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: 260px 2px 1fr;    
    gap: 50px;    
    align-items: center;
    text-align: left;
  }
  
  .big-lion {
    width: 220px;
    height: 220px;
    font-size: 95px;
    margin: 0 auto;
  }
  
  .about-text {
    background: transparent;    
    border-radius: 18px;
    padding: 35px;
  }
  
  .about-text h3 {
    color: #c7952d;
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .about-text h4 {
    font-size: 28px;
    margin-bottom: 5px;
  }
  
  .about-text h5 {
    color: #6b2aa8;    
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .about-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  
  .gold-text {
    color: #c7952d;
    font-weight: bold;
  }
  
  .contact-cards {
    max-width: 900px;
    margin: 55px auto 0;
    display: grid;
    gap: 25px;
  }
  
  .contact-card {
    display: block;
    padding: 30px;
    background: #111;
    border: 2px solid #6b2aa8;
    border-radius: 18px;
    text-decoration: none;
    color: #f5f1e8;
    transition: .2s ease;
  }
  
  .contact-card:hover {
    border-color: #c7952d;
    transform: translateY(-3px);
  }
  
  .contact-card span {
    display: block;
    color: #c7952d;
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .contact-card strong {
    font-size: 28px;
  }
  
  @media (max-width: 800px) {
    .site-header {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    nav {
      gap: 18px;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .hero-content h2,
    .page-section h2 {
      font-size: 36px;
    }
  
    .tagline,
    .large-text {
      font-size: 22px;
    }
  
    .about-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .about-text {
      text-align: center;
    }
  
    .contact-card strong {
      font-size: 22px;
    }
  }

  .home-about-preview {
    padding: 80px 8%;
    border-top: 2px solid #c7952d;
    background: #050505;
    display: flex;
    justify-content: center;
  }

.preview-image {
  min-height: 420px;
  border: 2px solid #6b2aa8;
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(107, 42, 168, 0.35), transparent 45%),
    #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drink-placeholder {
  font-size: 120px;
  filter: drop-shadow(0 0 18px rgba(199, 149, 45, 0.35));
}

.preview-text {
    max-width: 850px;
    text-align: center;
  }

.preview-text h3 {
  color: #c7952d;
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.preview-text p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.small-divider {
    margin: 0 auto 28px;
    width: 220px;
  }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-grid div {
  padding: 22px;
  border: 1px solid #6b2aa8;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.85);
}

.feature-grid h4 {
  color: #c7952d;
  font-size: 22px;
  margin-bottom: 8px;
}

.feature-grid p {
  font-size: 17px;
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .home-about-preview {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .preview-text {
    text-align: center;
  }

  .small-divider {
    margin: 0 auto 28px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}.home-about-preview {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    border-top: 2px solid #c7952d;
    background: #050505;
  }
  .big-lion-logo {
    width: 240px;
  }
  
  .preview-image {
    min-height: 420px;
    border: 2px solid #6b2aa8;
    border-radius: 18px;
    background:
      radial-gradient(circle at center, rgba(107, 42, 168, 0.35), transparent 45%),
      #111;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .drink-placeholder {
    font-size: 120px;
    filter: drop-shadow(0 0 18px rgba(199, 149, 45, 0.35));
  }
  
  .preview-text {
    text-align: left;
  }
  
  .preview-text h3 {
    color: #c7952d;
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  
  .preview-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 25px;
  }
  
  .small-divider {
    margin: 0 0 28px 0;
    width: 220px;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .feature-grid div {
    padding: 22px;
    border: 1px solid #6b2aa8;
    border-radius: 14px;
    background: rgba(17, 17, 17, 0.85);
  }
  
  .feature-grid h4 {
    color: #c7952d;
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .feature-grid p {
    font-size: 17px;
    margin-bottom: 0;
  }
  
  @media (max-width: 800px) {
    .home-about-preview {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .preview-text {
      text-align: center;
    }
  
    .small-divider {
      margin: 0 auto 28px;
    }
  
    .feature-grid {
      grid-template-columns: 1fr;
    }
  }

  .home-about-preview {
    padding: 80px 8% !important;
    border-top: 2px solid #c7952d !important;
    background: #050505 !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  .preview-text {
    max-width: 850px !important;
    text-align: center !important;
  }
  
  .small-divider {
    margin: 0 auto 28px !important;
    width: 220px !important;
  }

  .icon-card {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 28px !important;
    text-align: left !important;
    padding: 32px 42px !important;
    border-radius: 20px !important;
  }
  
  .gold-border {
    border-color: #c7952d !important;
  }
  
  .contact-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px !important;    
    flex-shrink: 0;


.contact-icon svg,
.contact-icon i {
    width: 80px !important;
    height: 80px !important;
    font-size: 80px !important;
}

.purple-icon {

  .purple-icon {
    color: #b75cff;
    border: 2px solid #6b2aa8;
  }
  
  .gold-icon {
    color: #c7952d;
    border: 2px solid #c7952d;
  }
  
  .icon-card span {
    font-size: 28px !important;
    margin-bottom: 8px !important;
  }
  
  .icon-card strong {
    font-size: 34px !important;
  }

  .social-svg {
    width: 34px;
    height: 34px;
    display: block;
    fill: currentColor;
  }
  
  .gold-icon .social-svg {
    color: #c7952d;
  }
  
  .purple-icon .social-svg {
    color: #b75cff;
  }

  .contact-page .page-section {
    padding-top: 90px;
  }
  
  .contact-intro {
    color: #f5f1e8;
    font-size: 38px;
    margin-top: 35px;
    margin-bottom: 28px;
  }
  
  .contact-subtext {
    color: #f5f1e8;
    font-size: 30px;
    line-height: 1.45;
    margin-bottom: 90px;
  }
  
  .contact-cards {
    max-width: 850px;
    margin: 0 auto;
  }
  
  .contact-service-area {
    color: #c7952d;
    font-size: 24px;
    font-weight: bold;
    margin-top: 48px;
    text-align: center;
  }
  
  .icon-card {
    min-height: 130px;
    margin-bottom: 35px !important;
  }
  
  .contact-icon {
    width: 90px;
    height: 90px;
  }
  
  .social-svg {
    width: 42px;
    height: 42px;
  }

  .contact-cards {
    max-width: 950px !important;
  }
  
  .icon-card {
    min-height: 155px !important;
    padding: 38px 50px !important;
  }
  
  .contact-icon {
    width: 105px !important;
    height: 105px !important;
  }
  
  .icon-card span {
    font-size: 30px !important;
  }
  
  .icon-card strong {
    font-size: 38px !important;
  }

  .contact-service-area {
    margin-top: 70px !important;
  }

  .owner-divider {
    width: 2px;
    height: 360px;
    background: #6b2aa8;
  }

  .about-intro {
    color: #c7952d;
    font-size: 42px;
    line-height: 1.25;
    margin: 25px 0 25px;
  }
  
  .about-service-area {
    color: #c7952d;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 45px;
  }

  .gold-section-line {
    width: 85%;
    height: 2px;
    background: #c7952d;
    margin: 45px auto 55px;
  }

  .bring-section {
    margin-top: 55px;
    text-align: center;
  }
  
  .bring-section h3 {
    color: #c7952d;
    font-size: 34px;
    margin-bottom: 12px;
  }
  

  
  

  
  .bring-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 18px;
    border: 2px solid #6b2aa8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c7952d;
    font-size: 42px;
  }
  
  


  .bring-icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: #c7952d;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }



  .insta-icon {
    width: 42px !important;
    height: 42px !important;
    display: block !important;
  }

  .bring-card {
    border: 1px solid #c7952d;
    border-radius: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
  }

  
  .bring-section .bring-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    max-width: 1000px !important;
    margin: 30px auto 0 !important;
  }
  
  .bring-section .bring-card {
    text-align: center !important;
  }

  .bring-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    max-width: 1000px !important;
    margin: 35px auto 0 !important;
  }

  .bring-section .bring-grid {
    display: flex !important;
  }

  body {
    background: red !important;
  }

  .bring-card h4 {
    letter-spacing: 4px;
}

.bring-card h4 {
    margin-bottom: 20px !important;
  }

  .insta-icon {
    width: 42px !important;
    height: 42px !important;
    display: block !important;
    color: #c7952d !important;
    stroke: #c7952d !important;
  }