@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Playfair+Display:wght@400..900&family=Poppins:wght@400;500;600;700;900&display=swap");

/* --- ROOT VARIABLES & RESET --- */
:root {
  --main-color: #fac105;
  --secondary-color: #ffd700;
  --third-color: #f05b2e;
  --ex-color: #f5f5f5;
  --dark-color: #3a3a3a;
  --text-color: #555555;
  --light-color: #ffffff;
  --border-color: #eaeaea;
  --font-heading: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;
  --ex-font: "Poppins", sans-serif;
  --shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  --header-height: 80px;
  --top-bar-height: 40px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-color);
  background-color: var(--light-color);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-weight: 700;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--main-color);
  color: var(--light-color);
  border-color: var(--main-color);
  font-weight: 900;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary {
  background-color: transparent;
  color: var(--main-color);
  border-color: var(--main-color);
}

.btn-secondary:hover {
  background-color: var(--main-color);
  color: var(--light-color);
  border-color: var(--main-color);
}

.btn-third {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 900;
}

.btn-third:hover {
  background-color: var(--main-color);
  color: var(--light-color);
  border-color: var(--main-color);
}

/* --- SECTION 1: TOP BAR --- */

.top-bar {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 10px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar p {
  font-weight: 700;
  font-size: 16px;
}
.top-bar-contact span {
  margin-left: 20px;
  color: var(--light-color);
  font-weight: 700;
  font-size: 16px;
}
.top-bar-contact i {
  color: var(--secondary-color);
  margin-right: 5px;
}

/* --- SECTION 2: HEADER --- */

#header {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--light-color);
  transition: box-shadow 0.3s ease;
}
#header.scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.logo svg {
  height: 40px;
  width: auto;
}
.logo .logo-text {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  fill: var(--dark-color); /* Change logo color here */
  transition: fill 0.3s ease;
}
.logo .logo-text-2 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  fill: var(--main-color); /* Change logo color here */
  transition: fill 0.3s ease;
}
.logo:hover .logo-text {
  fill: var(--main-color);
}
.nav-list {
  display: flex;
}
.nav-list li {
  margin: 0 20px;
}
.nav-list a {
  color: var(--dark-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  padding: 10px 0;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--third-color);
  transition: width 0.3s ease;
}
.nav-list a.active {
  color: var(--third-color);
}
.nav-list a:hover::after {
  width: 100%;
}
.hamburger-menu {
  display: none;
  font-size: 2rem;
  color: var(--dark-color);
  background: none;
  border: none;
  cursor: pointer;
}

/* --- SECTION 3: HERO SECTION --- */

#hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}
#hero .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
#hero .slide.active {
  opacity: 1;
  z-index: 2;
}
#hero .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  color: var(--light-color);
  margin-bottom: 0;
  font-weight: normal;
}
.hero-title-2 {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  color: var(--light-color);
  margin-bottom: 1rem;
  font-weight: normal;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-color);
}
.slider-nav {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 5;
}
.slider-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--light-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.slider-nav button:hover {
  background: rgba(255, 255, 255, 0.5);
}
.hero-title,
.hero-title-2,
.hero-subtitle,
#hero .btn {
  opacity: 0;
}
.slide.active .hero-title {
  animation: fadeInDown 1s ease-out 0.7s forwards;
}
.slide.active .hero-title-2 {
  animation: fadeInDown 1s ease-out 0.4s forwards;
}
.slide.active .hero-subtitle {
  animation: fadeInUp 1s ease-out 0.9s forwards;
}
.slide.active .btn {
  animation: fadeInUp 1s ease-out 1.2s forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- SECTION 4: CATEGORIES --- */

#categories {
  padding-top: 100px;
  padding-bottom: 100px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#categories .hidden-categories {
  display: none;
}
.category-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4 / 5;
}
.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-item:hover img {
  transform: scale(1.1);
}

/* --- SECTION 5: CTA 1 --- */

#cta1 {
  background: linear-gradient(rgba(64, 39, 10, 0.8), rgba(64, 39, 10, 0.8)),
    url("./images/cta1-img.webp") center/cover no-repeat;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.cta1-content h3 {
  color: var(--light-color);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.cta1-content h2 {
  font-size: 6rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  font-weight: 500;
}
.cta1-content .cta1-button {
  font-weight: 900;
  font-size: 1rem;
  background-color: transparent;
  color: var(--light-color);
  border-color: var(--light-color);
}
.cta1-content .cta1-button:hover {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* --- SECTION 6: ABOUT US --- */

.about-section {
  padding-top: 100px;
}
.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.about-image img {
  border-radius: 10px;
}
.about-content .section-title,
.about-content .section-subtitle {
  text-align: left;
  margin-left: 0;
}
.about-content p {
  margin-bottom: 1.5rem;
}

/* --- SECTION 7: PRODUCTS --- */

#products {
  padding-top: 100px;
  padding-bottom: 100px;
}
.product-ct h2 {
  margin-bottom: 3rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.product-grid .hidden-product {
  display: none;
}
.product-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .card-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-category {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--third-color);
  font-weight: 700;
}
.card-title {
  font-size: 1.4rem;
  margin: 0.5rem 0;
}
.card-description {
  margin-bottom: 1rem;
  font-size: 1rem;
  flex-grow: 1;
}
.price-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.original-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}
.sale-price {
  font-size: 1.3rem;
  font-weight: 700;
}

/* --- SECTION 8: TESTIMONIALS --- */

.testimonial-section {
  padding: 100px 0;
  background-color: var(--ex-color);
  position: relative;
}
#scrolling-leaf {
  position: absolute;
  width: 270px;
  height: auto;
  top: 0%;
  left: -2%;
  z-index: 1;
  transition: transform 0.5s ease-out;
  opacity: 1;
}
.testimonial-section .testi-ct {
  margin-bottom: 3rem;
}
.stars {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: left;
}
.testimonial-card {
  padding: 30px 30px;
  border-radius: 15px;
  background-color: var(--light-color);
  display: flex !important;
  flex-direction: column;
  margin: 10px 5px;
  border-left: 4px solid var(--secondary-color);
  border-top: 1px solid var(--secondary-color);
  border-right: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}
.testimonial-card:hover {
  transform: translateY(-7px);
}
.testimonial-quote {
  font-style: italic;
  color: #6c6c6c;
  margin-bottom: 25px;
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-author img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.author-name {
  margin-bottom: 3px;
  font-size: 1.3rem;
}
.author-info span {
  font-size: 0.9rem;
  color: #535151;
  font-family: var(--ex-font);
}

/* --- SECTION 9: BLOG --- */

.blog-section {
  padding: 100px 0;
}
.section-intro {
  max-width: 600px;
  margin: 0 auto 50px auto;
  color: var(--text-color);
  font-size: 1.1rem;
  font-family: var(--ex-font);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  margin-top: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgb(250, 250, 200);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-7px);
}
.blog-card-image {
  height: 220px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.blog-meta .blog-name {
  color: #424242;
}
.blog-meta .blog-category {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #c7c5c5;
  color: var(--third-color);
}
.blog-title {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-title a {
  color: var(--dark-color);
}
.blog-title a:hover {
  color: var(--main-color);
}
.blog-excerpt {
  color: #424242;
  margin-bottom: 20px;
  flex-grow: 1;
}
.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-color);
}
.read-more i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.read-more:hover i {
  margin-left: 10px;
}
.hidden-blog {
  display: none;
}

/* --- SECTION 10: CTA BANNER --- */

#cta {
  padding: 0;
}
.cta-banner {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--light-color);
  position: relative;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.cta-banner .container {
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 400;
}
.cta-banner .cta-desc {
  color: var(--light-color);
  margin-bottom: 2rem;
  font-size: 1.2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- SECTION 11: MAP LOCATION --- */

#map-location {
  padding-top: 100px;
  padding-bottom: 0;
}
.map-container {
  width: 100%;
  height: 450px;
  margin-top: 3rem;
}

/* --- SECTION 12: CONTACT FORM --- */

#contact-section {
  padding-top: 60px;
  padding-bottom: 90px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 4rem;
  text-align: left;
}
.contact-info-block h3,
.contact-form-block h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.info-item i {
  font-size: 1.5rem;
  color: var(--third-color);
  margin-right: 15px;
  margin-top: 3px;
}
.contact-form .form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  margin-top: 10px;
}
#form-message {
  margin-top: 20px;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  display: none; /* Ẩn ban đầu */
  transition: all 0.3s ease-in-out;
}

#form-message.success {
  display: block;
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* --- SECTION 13: FOOTER --- */

footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding-top: 80px;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--light-color);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col ul a {
  color: var(--light-color);
  display: inline-block;
  padding-left: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-col ul a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}
.footer-logo .logo-text {
  fill: var(--secondary-color);
}
.about-col p {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.social-links-footer a {
  color: var(--light-color);
  font-size: 1.5rem;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-links-footer a:hover {
  color: var(--secondary-color);
}
.footer-container .contact-col p {
  margin-bottom: 0.6rem;
}
.contact-col i {
  color: var(--secondary-color);
  margin-right: 10px;
  width: 20px;
}
.footer-bottom {
  border-top: 1px solid #6b6969;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom p {
  color: var(--light-color);
  font-weight: 700;
  font-size: 17px;
}
.footer-bottom a {
  text-decoration: underline;
  color: var(--third-color);
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-bottom a:hover {
  color: var(--secondary-color);
}
.footer-bottom .bxs-heart {
  color: var(--third-color);
  font-size: 1.2rem;
}

/* --- GO TO TOP BUTTON --- */

.go-to-top {
  position: fixed;
  bottom: 2%;
  right: 2%;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.go-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.go-to-top:hover {
  background-color: var(--third-color);
  color: var(--light-color);
}

/* --------- RESPONSIVE DESIGN -------------
-------------------------------------------- 
-------------------------------------------- */

@media (min-width: 1600px) {
  #scrolling-leaf {
    display: none;
  }
}

@media (min-width: 1500px) and (max-width: 1599px) {
  #scrolling-leaf {
    top: 0%;
    left: 7%;
    width: 300px;
  }
}

@media (min-width: 1400px) and (max-width: 1499px) {
  #scrolling-leaf {
    top: 0%;
    left: 4%;
    width: 300px;
  }
}

@media (min-width: 1300px) and (max-width: 1399px) {
  #scrolling-leaf {
    top: 0%;
    left: 3%;
    width: 270px;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
  #scrolling-leaf {
    top: 0%;
    left: 1%;
    width: 270px;
  }
}

@media (min-width: 1100px) and (max-width: 1199px) {
  #scrolling-leaf {
    top: 0%;
    left: 0%;
    width: 240px;
  }
}

@media (min-width: 992px) and (max-width: 1099px) {
  #scrolling-leaf {
    top: 0%;
    left: 0%;
    width: 200px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .footer-container .contact-col p {
    margin-bottom: 0rem;
  }
}

@media (max-width: 1399px) {
  .hero-title,
  .hero-title-2 {
    line-height: 1.4;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  .product-grid,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  html {
    font-size: 15px;
  }
  .section-title {
    font-size: 2.5rem;
  }
  /* Hamburger Menu */
  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  .main-nav.active {
    max-height: 70vh;
    overflow-y: auto;
  }
  .nav-list {
    flex-direction: column;
    padding: 20px;
    align-items: center;
  }
  .nav-list li {
    margin: 15px 0;
  }
  .nav-list a {
    font-size: 1.2rem;
  }
  .hamburger-menu {
    display: block;
  }
  .hero-title,
  .hero-title-2 {
    font-size: 3.8rem;
  }
  .hero-content {
    max-width: 700px;
  }
  .hero-content .custom-hero {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
  .cta1-content h3 {
    font-size: 2.5rem;
  }
  .cta1-content h2 {
    font-size: 5.3rem;
    margin-bottom: 1.3rem;
  }
  .cta1-content .cta1-button {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
  .about-content .custom-about {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
  .product-ct h2 {
    margin-bottom: 2.5rem;
  }
  .product-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid .hidden-product {
    display: block;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  #categories,
  #products,
  .testimonial-section,
  .cta-banner,
  .blog-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #scrolling-leaf {
    display: none;
  }
  .blog-section .section-intro {
    margin-bottom: 40px;
  }
  .cta-banner h2 {
    font-size: 2.7rem;
  }
  #contact-section {
    padding-bottom: 80px;
  }
  .contact-grid {
    margin-top: 3rem;
  }
  .about-section {
    padding-top: 80px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content .section-title,
  .about-content .section-subtitle {
    text-align: left;
  }
  .about-image {
    margin: 0;
    max-width: 500px;
  }
  .testimonial-section .testi-ct {
    margin-bottom: 2.5rem;
  }
  #map-location {
    padding-top: 80px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid .hidden-blog {
    display: block;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  .nav-list li {
    margin: 14px 0;
  }
  .nav-list a {
    font-size: 1.1rem;
  }
  #hero {
    height: 70vh;
    min-height: 500px;
  }
  .hero-title,
  .hero-title-2 {
    font-size: 3.5rem;
    line-height: 1.4;
  }
  .hero-title-2 {
    margin-bottom: 1.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  .hero-content {
    padding: 10px;
  }
  .hero-content .custom-hero {
    padding: 10px 22px;
    font-size: 0.8rem;
  }
  .slider-nav {
    display: none;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  #categories .hidden-categories {
    display: block;
  }
  #cta1 {
    background-attachment: scroll;
  }
  .cta1-content h3 {
    font-size: 2.3rem;
  }
  .cta1-content h2 {
    font-size: 4.3rem;
    margin-bottom: 1.2rem;
  }
  .cta1-content .cta1-button {
    padding: 10px 22px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }
  .about-content p {
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .about-content .custom-about {
    padding: 10px 22px;
    font-size: 0.8rem;
  }
  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .product-grid .hidden-product {
    display: none;
  }
  #categories,
  #cta1,
  #products,
  .testimonial-section,
  .blog-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cta-banner {
    padding: 60px 0;
    background-attachment: scroll;
  }
  .cta-banner h2 {
    font-size: 2.3rem;
  }
  .cta-banner .cta-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .cta-banner .custom-cta {
    padding: 10px 22px;
    font-size: 0.8rem;
  }
  #contact-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .testimonial-card {
    margin-left: 0;
    margin-right: 0;
  }
  .testimonial-quote {
    font-size: 0.95rem;
  }
  .testimonial-author img {
    width: 60px;
    height: 60px;
  }
  .author-name {
    font-size: 1.1rem;
  }
  .about-section {
    padding-top: 60px;
  }
  .section-subtitle {
    margin-bottom: 2.5rem;
  }
  .blog-grid .hidden-blog {
    display: none;
  }
  #map-location {
    padding-top: 60px;
  }
  .contact-col p {
    justify-content: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .newsletter-form button {
    border-radius: 50px;
    margin-bottom: 10px;
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  footer {
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2.3rem;
  }
  .hero-title,
  .hero-title-2 {
    font-size: 3.2rem;
  }
  .cta1-content h2 {
    font-size: 3.9rem;
    margin-bottom: 1rem;
  }
  .cta1-content .cta1-button {
    padding: 8px 20px;
  }
  .testimonial-section .testi-ct {
    margin-bottom: 2rem;
  }
  .stars {
    font-size: 1rem;
  }
  .section-subtitle {
    margin-bottom: 2rem;
  }
  .cta-banner h2 {
    font-size: 2rem;
  }
  .cta-banner .cta-desc {
    max-width: 400px;
  }
  .cta-banner .custom-cta {
    padding: 8px 20px;
  }
  .contact-grid {
    gap: 20px;
  }
  .contact-info-block h3,
  .contact-form-block h3 {
    font-size: 1.7rem;
  }
  .contact-form-block .contact-submit {
    font-size: 0.8rem;
  }
}

@media (max-width: 528px) {
  .footer-container .contact-col p {
    margin-bottom: 0rem;
  }
}

@media (max-width: 479px) {
  .hero-title,
  .hero-title-2 {
    font-size: 2.8rem;
  }
  .hero-title-2 {
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .cta1-content h2 {
    font-size: 3.4rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 35px;
  }
  .footer-container .contact-col p {
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 375px) {
  .hero-title,
  .hero-title-2 {
    font-size: 2.5rem;
  }
  .about-col p {
    margin-bottom: 1rem;
  }
  .go-to-top {
    width: 40px;
    height: 40px;
    right: 5%;
    font-size: 1.2rem;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* --- Buttons --- */
.header-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-playnow {
  background: #ffb300;
  color: #fff;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 17px;
  transition: all 0.3s ease;
}

.btn-playnow:hover {
  background: #ffd633;
  color: #000;
}

.btn-signup {
  color: #ffb300;
  font-weight: 700;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s ease;
}

.btn-signup:hover {
  color: #ffd633;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .header-buttons {
    gap: 10px;
  }

  .btn-playnow,
  .btn-signup {
    font-size: 15px;
  }
}

.logo svg {
  width: 180px;
  height: auto;
}

.logo-text {
  fill: #222;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
}

.logo-text-2 {
  fill: #ffb300;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
}

/* ===== HERO SECTION ===== */

#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Слайд */
.slide {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Активный слайд */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Контент внутри */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: calc(100vh - 100px); /* минус высота шапки */
  padding: 100px 20px 120px; /* верх, бока, низ */
  box-sizing: border-box;
}

/* Тексты */
.hero-title, .hero-title-2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #fff;
  font-size: 3rem;
  margin: 0;
}

.hero-title-2 {
  color: #ffb300;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 40px;
}

/* Кнопки */
.custom-hero {
  background-color: #ffb300;
  border: none;
  color: #000;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.custom-hero:hover {
  background-color: #ffd633;
  transform: translateY(-2px);
}

/* Навигация */
.slider-nav {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 3;
}

.slider-nav button {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-nav button:hover {
  background: #ffb300;
  color: #000;
}

/* Адаптив */
@media (max-width: 768px) {
  .hero-content {
    height: auto;
    padding: 120px 20px 100px;
  }

  .hero-title, .hero-title-2 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ===== ADVANTAGES SECTION ===== */

.advantages-section {
  background-color: #ffffff; /* Белый фон секции */
  color: #111;
  padding: 100px 20px;
}

.section-title {
  color: #0d0f2f;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* ---- Карточки ---- */
.adv-card {
  background: #0d0f2f; /* Тёмно-синий фон карточки */
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 179, 0, 0.15);
}

.adv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 179, 0, 0.25);
  border-color: #ffb300;
}

/* ---- Иконки ---- */
.adv-icon {
  font-size: 42px;
  color: #ffb300;
  margin-bottom: 20px;
}

/* ---- Заголовки и текст ---- */
.adv-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.adv-text {
  color: #dcdcdc;
  font-size: 1rem;
  line-height: 1.6;
}

/* ---- Адаптив ---- */
@media (max-width: 768px) {
  .advantages-section {
    padding: 70px 20px;
  }

  .adv-card {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ===== Crown Casinos Info Section ===== */

.crown-info-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
  line-height: 1.8;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.3rem;
  color: #0d0f2f;
  margin-bottom: 60px;
}

.crown-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffb300;
  margin-bottom: 15px;
  margin-top: 25px;
}

.crown-info-col p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 20px;
}

.crown-info-col strong {
  color: #0d0f2f;
  font-weight: 700;
}

.crown-info-col em {
  font-style: normal;
  color: #777;
}

/* Responsive */
@media (max-width: 900px) {
  .crown-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CROWN MELBOURNE SECTION ===== */
.casino-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
}

.casino-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.casino-image {
  flex: 1;
  min-width: 350px;
}

.casino-image img {
  width: 100%;
  height: 100%;
  max-width: 520px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.casino-content {
  flex: 1;
  min-width: 350px;
}

.section-title {
  color: #0d0f2f;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.casino-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

.casino-text strong {
  color: #0d0f2f;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .casino-container {
    flex-direction: column;
    text-align: center;
  }

  .casino-image img {
    max-width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ===== TABLE GAMES SECTION ===== */
.table-games-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
}

.section-title {
  color: #0d0f2f;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #444;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}

.tag {
  background: #0d0f2f;
  color: #ffb300;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.game-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 179, 0, 0.25);
}

.game-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.game-content {
  padding: 20px 25px 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d0f2f;
}

.game-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.label {
  background-color: #ffb300;
  color: #0d0f2f;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  align-self: start;
}

/* ---- Discover Link ---- */
.discover-link {
  display: inline-block;
  font-weight: 600;
  color: #0d0f2f;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.discover-link::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #0d0f2f;
  margin-top: 4px;
  transition: width 0.3s ease, background 0.3s ease;
}

.discover-link:hover {
  color: #ffb300;
}

.discover-link:hover::after {
  width: 70px;
  background: #ffb300;
}

.table-summary {
  margin-top: 60px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.summary-title {
  color: #0d0f2f;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.table-summary p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== POKER SECTION (White Background, Floating Image) ===== */

.poker-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
  line-height: 1.8;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 50px;
}

.poker-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #444;
}

.poker-image {
  width: 420px;
  float: right;
  margin: 0 0 25px 35px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.poker-content h3 {
  color: #ffb300;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
}

.poker-content p {
  margin-bottom: 18px;
}

.poker-list {
  margin: 10px 0 25px 25px;
  padding-left: 20px;
}

.poker-list li {
  margin-bottom: 10px;
}

.custom-poker-btn {
  display: inline-block;
  background-color: #ffb300;
  color: #0d0f2f;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.custom-poker-btn:hover {
  background-color: #0d0f2f;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .poker-image {
    float: none;
    display: block;
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 600px;
  }

  .poker-content {
    text-align: left;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ===== eTables Section ===== */
.etables-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 30px;
}

.section-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px auto;
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

.etables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  justify-content: center;
}

.etable-card {
  background-color: #faf8f4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.etable-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.etable-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.etable-content {
  padding: 25px 30px 40px 30px;
}

.etable-content h3 {
  font-size: 1.4rem;
  color: #0d0f2f;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.etable-content p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.discover-link {
  display: inline-block;
  font-weight: 600;
  color: #0d0f2f;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.discover-link::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #0d0f2f;
  margin-top: 4px;
  transition: width 0.3s ease, background 0.3s ease;
}

.discover-link:hover {
  color: #ffb300;
}

.discover-link:hover::after {
  width: 70px;
  background: #ffb300;
}

.etables-summary {
  max-width: 900px;
  margin: 70px auto 0 auto;
  text-align: center;
}

.summary-title {
  font-size: 1.6rem;
  color: #ffb300;
  margin-bottom: 15px;
}

.etables-summary p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .etables-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SLOT MACHINES SECTION ===== */
.slots-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
  line-height: 1.8;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 50px;
}

.slots-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #444;
}

.slots-image {
  width: 420px;
  float: right;
  margin: 0 0 25px 35px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.slots-content h3 {
  color: #ffb300;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
}

.slots-content p {
  margin-bottom: 18px;
}

.slots-list {
  margin: 10px 0 25px 25px;
  padding-left: 20px;
}

.slots-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.custom-slot-btn {
  display: inline-block;
  background-color: #ffb300;
  color: #0d0f2f;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.custom-slot-btn:hover {
  background-color: #0d0f2f;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .slots-image {
    float: none;
    display: block;
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 600px;
  }

  .slots-content {
    text-align: left;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ===== VIP SECTION ===== */
.vip-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
  line-height: 1.8;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 50px;
}

.vip-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #444;
}

.vip-image {
  width: 420px;
  float: right;
  margin: 0 0 25px 35px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.vip-content h3 {
  color: #ffb300;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
}

.vip-content p {
  margin-bottom: 18px;
}

.custom-vip-btn {
  display: inline-block;
  background-color: #ffb300;
  color: #0d0f2f;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.custom-vip-btn:hover {
  background-color: #0d0f2f;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .vip-image {
    float: none;
    display: block;
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 600px;
  }

  .vip-content {
    text-align: left;
  }

  .section-title {
    font-size: 2rem;
  }
}

.slots-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
  line-height: 1.8;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 50px;
}

.slots-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #444;
}

.slots-image {
  width: 420px;
  float: right;
  margin: 0 0 25px 35px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.slots-content h3 {
  color: #ffb300;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
}

.slots-content p {
  margin-bottom: 18px;
}

.slots-list {
  margin: 10px 0 25px 25px;
  padding-left: 20px;
}

.slots-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.custom-slot-btn {
  display: inline-block;
  background-color: #ffb300;
  color: #0d0f2f;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.custom-slot-btn:hover {
  background-color: #0d0f2f;
  color: #fff;
}

@media (max-width: 992px) {
  .slots-image {
    float: none;
    display: block;
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 600px;
  }

  .slots-content {
    text-align: left;
  }

  .section-title {
    font-size: 2rem;
  }
}

.premium-rooms-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
  text-align: center;
}

.premium-rooms-section .section-title {
  font-size: 2.4rem;
  color: #0d0f2f;
  font-weight: 700;
  margin-bottom: 30px;
}

.premium-rooms-section .section-intro {
  max-width: 900px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
  color: #555;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
}

.room-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  max-width: 380px;
  text-align: left;
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-6px);
}

.room-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.room-content {
  padding: 25px;
}

.room-content h3 {
  color: #ffb300;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.room-content p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.label {
  display: inline-block;
  background-color: #0d0f2f;
  color: #fff;
  font-size: 0.85rem;
  border-radius: 20px;
  padding: 6px 16px;
  text-transform: uppercase;
}

.rooms-summary {
  max-width: 950px;
  margin: 60px auto 0 auto;
  text-align: left;
}

.rooms-summary h3 {
  color: #ffb300;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.rooms-summary p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
}

.casino-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
}

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

.casino-image {
  flex: 1 1 45%;
}

.casino-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.casino-content {
  flex: 1 1 50%;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 25px;
}

.casino-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

@media (max-width: 992px) {
  .casino-container {
    flex-direction: column;
  }

  .casino-image,
  .casino-content {
    flex: 1 1 100%;
  }

  .section-title {
    text-align: center;
  }
}

.table-games-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
  text-align: center;
}

.table-games-section .section-title {
  font-size: 2.3rem;
  color: #0d0f2f;
  font-weight: 700;
  margin-bottom: 25px;
}

.table-games-section .section-intro {
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
  line-height: 1.7;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.tag {
  background: #0d0f2f;
  color: #fff;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.game-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  text-align: left;
  max-width: 370px;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px);
}

.game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.game-content {
  padding: 22px;
}

.game-content h3 {
  font-size: 1.3rem;
  color: #ffb300;
  font-weight: 700;
  margin-bottom: 10px;
}

.game-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.label {
  display: inline-block;
  background-color: #0d0f2f;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 20px;
  padding: 6px 14px;
}

.discover-link {
  display: inline-block;
  margin-top: 12px;
  color: #0d0f2f;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-bottom: 2px solid #ffb300;
  padding-bottom: 2px;
  transition: 0.3s;
}

.discover-link:hover {
  color: #ffb300;
}

.table-summary {
  max-width: 900px;
  margin: 60px auto 0 auto;
  text-align: left;
}

.table-summary h3 {
  color: #ffb300;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.table-summary p {
  color: #444;
  line-height: 1.7;
}

.etables-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
}

.etables-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 30px;
  text-align: left;
}

.etables-text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.etables-float-img {
  float: right;
  width: 45%;
  max-width: 520px;
  margin: 0 0 20px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.etables-text-block p {
  margin-bottom: 18px;
}

@media (max-width: 992px) {
  .etables-float-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 25px 0;
    display: block;
  }

  .section-title {
    text-align: center;
  }
}

.slots-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
}

.slots-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 30px;
  text-align: left;
}

.slots-text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.slots-float-img {
  float: right;
  width: 45%;
  max-width: 520px;
  margin: 0 0 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.slots-text-block p {
  margin-bottom: 18px;
}

.yellow-subtitle {
  font-size: 1.3rem;
  color: #ffb300;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

@media (max-width: 992px) {
  .slots-float-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 25px 0;
    display: block;
  }

  .section-title {
    text-align: center;
  }
}

.vip-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
}

.vip-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 30px;
  text-align: left;
}

.vip-text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.vip-float-img {
  float: right;
  width: 45%;
  max-width: 520px;
  margin: 0 0 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.vip-text-block p {
  margin-bottom: 18px;
}

.yellow-subtitle {
  font-size: 1.3rem;
  color: #ffb300;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

@media (max-width: 992px) {
  .vip-float-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 25px 0;
    display: block;
  }

  .section-title {
    text-align: center;
  }
}

.rewards-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
}

.rewards-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 30px;
  text-align: left;
}

.rewards-text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.rewards-float-img {
  float: right;
  width: 45%;
  max-width: 520px;
  margin: 0 0 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.rewards-text-block p {
  margin-bottom: 18px;
}

.yellow-subtitle {
  font-size: 1.3rem;
  color: #ffb300;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

@media (max-width: 992px) {
  .rewards-float-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 25px 0;
    display: block;
  }

  .section-title {
    text-align: center;
  }
}

.responsible-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
}

.responsible-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 30px;
  text-align: left;
}

.responsible-text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.responsible-float-img {
  float: right;
  width: 45%;
  max-width: 300px;
  margin: 0 0 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.responsible-text-block p {
  margin-bottom: 18px;
}

.yellow-subtitle {
  font-size: 1.3rem;
  color: #ffb300;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

@media (max-width: 992px) {
  .responsible-float-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 25px 0;
    display: block;
  }

  .section-title {
    text-align: center;
  }
}

.app-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
}

.app-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d0f2f;
  margin-bottom: 30px;
  text-align: left;
}

.app-text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.app-float-img {
  float: right;
  width: 45%;
  max-width: 520px;
  margin: 0 0 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.app-text-block p {
  margin-bottom: 18px;
}

.yellow-subtitle {
  font-size: 1.3rem;
  color: #ffb300;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

@media (max-width: 992px) {
  .app-float-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 25px 0;
    display: block;
  }

  .section-title {
    text-align: center;
  }
}

.faq-section {
  background-color: #ffffff;
  color: #222;
  padding: 100px 20px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.3rem;
  color: #0d0f2f;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-intro {
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.faq-item {
  margin-bottom: 25px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-question {
  color: #ffb300;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-answer {
  color: #444;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* === GLOBAL FIX: Center All Section Titles === */
.section-title,
.section-subtitle {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* === FOOTER STYLES === */
#footer-main {
  background-color: #0d0f2f;
  color: #dcdcdc;
  padding-top: 70px;
  border-top: 3px solid #ffb300;
  font-family: "DM Sans", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.footer-col h4 {
  color: #ffb300;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffb300;
  padding-left: 4px;
}

.footer-logo svg {
  width: 140px;
  height: auto;
  margin-bottom: 15px;
}

.footer-col p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-links-footer {
  margin-top: 20px;
}

.social-links-footer a {
  color: #ffb300;
  margin-right: 12px;
  font-size: 1.4rem;
  transition: 0.3s;
}

.social-links-footer a:hover {
  color: #fff;
}

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

.footer-bottom i {
  color: #ffb300;
  margin: 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links-footer a {
    margin: 0 10px;
  }
}

.logo-main {
  fill: #ffb300;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-sub {
  fill: #ffb300;
  font-family: 'DM Sans', sans-serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 2px;
}

.footer-logo svg {
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

