/* ========================================
   HOTEL RASHMI GRAND - Premium Website
   Vibrant, Responsive & Elegant Design
   ======================================== */

:root {
  --primary: #C41E3A;
  --primary-dark: #9B1830;
  --primary-light: #E85A6B;
  --accent: #D4AF37;
  --accent-light: #F5D76E;
  --dark: #1A1A1A;
  --dark-soft: #2D2D2D;
  --gray: #6B6B6B;
  --light-gray: #F8F5F2;
  --white: #FFFFFF;
  --cream: #FFF9F5;
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-hover: 0 20px 60px rgba(196,30,58,0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 40px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 25px;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(196,30,58,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(196,30,58,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.header.scrolled .nav-link {
  color: var(--dark);
}

.header.scrolled .logo-text {
  color: var(--dark);
}

.header.scrolled .logo-text span {
  color: var(--primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo img {
  width: 152px;
  height: 152px;
/*  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);*/
}

.header.scrolled .logo img {
  width: 38px;
  height: 38px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo-text span {
  color: var(--accent-light);
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: var(--font-body);
}

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  border-radius: 6px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-light);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary);
}

.header.scrolled .nav-link::after {
  background: var(--primary);
}

.nav-cta {
  margin-left: 12px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.menu-toggle span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.header.scrolled .menu-toggle span {
/*  background: var(--dark);*/
}

/* ========== HERO SLIDER ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(196,30,58,0.4) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.slide-content-inner {
  max-width: 850px;
  animation: fadeUp 1s ease 0.3s both;
  padding-top: 140px;
}

.slide-tag {
  display: inline-block;
  background: rgba(212,175,55,0.2);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 7vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slide-title span {
  color: var(--accent-light);
}

.slide-desc {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.slide-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--accent);
  width: 36px;
  border-radius: 10px;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  pointer-events: all;
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== WELCOME SECTION ========== */
.welcome {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.welcome::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196,30,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.welcome-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.welcome-img:hover img {
  transform: scale(1.05);
}

.welcome-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
}

.welcome-badge i {
  font-size: 2rem;
  color: var(--primary);
}

.welcome-badge strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--dark);
}

.welcome-badge span {
  font-size: 0.85rem;
  color: var(--gray);
}

.welcome-content .section-subtitle {
  text-align: left;
}

.welcome-content .section-title {
  text-align: left;
}

.welcome-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.feature-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* ========== SERVICES ========== */
.services {
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  group: true;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.service-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.service-body {
  padding: 30px;
  text-align: center;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: -55px auto 20px;
  position: relative;
  z-index: 2;
  border: 5px solid var(--white);
  box-shadow: 0 8px 25px rgba(196,30,58,0.3);
}

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-body p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* ========== AMENITIES ========== */
.amenities {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.amenities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  background-size: 40px 40px;
  opacity: 0.5;
}

.amenities .section-subtitle {
  color: var(--accent);
}

.amenities .section-title {
  color: var(--white);
}

.amenities .section-desc {
  color: rgba(255,255,255,0.7);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.amenity-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.amenity-item:hover {
  background: rgba(196,30,58,0.2);
  border-color: var(--primary);
  transform: translateY(-8px);
}

.amenity-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

.amenity-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.amenity-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ========== ROOMS PREVIEW ========== */
.rooms-preview {
  background: var(--light-gray);
}

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

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.room-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.room-card:hover .room-img img {
  transform: scale(1.08);
}

.room-price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.room-body {
  padding: 24px;
}

.room-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.room-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--gray);
}

.room-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-meta i {
  color: var(--primary);
}

.room-body p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* ========== BANQUET / RESTAURANT HIGHLIGHT ========== */
.highlight {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(196,30,58,0.7));
}

.highlight-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}

.highlight-content .section-subtitle {
  color: var(--accent-light);
}

.highlight-content .section-title {
  color: var(--white);
}

.highlight-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 36px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--cream);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 3rem;
  color: rgba(196,30,58,0.1);
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark-soft);
  margin-bottom: 30px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

.stars {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* ========== CTA SECTION ========== */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
}

.cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  position: relative;
}

.cta .btn-outline {
  position: relative;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-text span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

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

.footer-bottom a {
  color: var(--accent);
}

/* ========== PAGE HERO (for inner pages) ========== */
.page-hero {
  height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.page-hero-content {
    padding-top: 112px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.8), rgba(196,30,58,0.6));
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 0.95rem;
  opacity: 0.9;
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid,
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .welcome-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }

  .menu-toggle {
    display: flex;
    background: #c41e3a;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 15px 30px 30px;
    gap: 8px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: var(--transition);
    align-items: stretch;
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    color: var(--dark) !important;
    padding: 5px 15px;
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin: 16px 0 0;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .header.scrolled .menu-toggle span,
  .menu-toggle span {
/*    background: var(--dark);*/
  }

  .header:not(.scrolled) .menu-toggle span {
    background: var(--white);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .welcome-grid {
    grid-template-columns: 1fr;
  }

  .welcome-img img {
    height: 350px;
  }

  .services-grid,
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .slider-arrows {
    display: none;
  }

  .slide-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    min-height: 720px;
  }
}

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

  .welcome-features {
    grid-template-columns: 1fr;
  }

  .welcome-badge {
    left: 16px;
    bottom: 16px;
    padding: 14px 18px;
  }
}

/* Animations on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .logo img {
    width: 120px !important;
    height: 120px !important;
  }

  .header.scrolled .logo img {
    width: 42px !important;
    height: 42px !important;
  }

  /* menu open = logo hide */
  .header:has(.nav.active) .logo {
    display: none !important;
  }

  .slide-content-inner {
    padding-top: 100px !important;
  }

  .page-hero{
        height: 299px !important;
  }

  .page-hero-content {
    padding-top: 113px !important;
}
}
