/* ============================================
   MODERN HOME PAGE STYLES
   ============================================ */

/* Hero Section */
.home-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 120px 20px 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/Home/frontbuilding.jpg') center/cover;
  opacity: 0.15;
}

.home-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top right, #f8fafc 49%, transparent 51%);
}

.home-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-hero__content {
  max-width: 600px;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(163, 0, 16, 0.9);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.home-hero__badge svg {
  width: 16px;
  height: 16px;
}

.home-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -2px;
  line-height: 1.05;
}

.home-hero h1 span {
  display: block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero__subtitle {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 0 0 32px;
}

.home-hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.home-hero__btn--primary {
  background: linear-gradient(135deg, #a30010 0%, #d4001a 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(163, 0, 16, 0.35);
}

.home-hero__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(163, 0, 16, 0.45);
}

.home-hero__btn--secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.home-hero__btn--secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.home-hero__btn svg {
  width: 20px;
  height: 20px;
}

.home-hero__image {
  position: relative;
}

.home-hero__image-main {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.home-hero__floating-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-hero__floating-card--rating {
  bottom: 40px;
  left: -30px;
}

.home-hero__floating-card--hours {
  top: 40px;
  right: -30px;
}

.home-hero__floating-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #a30010 0%, #d4001a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero__floating-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.home-hero__floating-text {
  display: flex;
  flex-direction: column;
}

.home-hero__floating-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.home-hero__floating-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
}

.home-hero__floating-value .stars {
  color: #ffc107;
}

/* Hours Banner */
.hours-banner {
  background: #fff;
  padding: 60px 20px;
}

.hours-banner__container {
  max-width: 1000px;
  margin: 0 auto;
}

.hours-banner__card {
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.hours-banner__header {
  margin-bottom: 32px;
}

.hours-banner__header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.hours-banner__header p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

.hours-banner__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.hours-banner__day {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.hours-banner__day.today {
  border-color: #a30010;
  background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
}

.hours-banner__day.closed {
  opacity: 0.5;
}

.hours-banner__day-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.hours-banner__day-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.hours-banner__day.closed .hours-banner__day-time {
  color: #94a3b8;
}

.hours-banner__note {
  font-size: 0.85rem;
  color: #64748b;
  font-style: italic;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

/* About Section */
.home-about {
  padding: 100px 20px;
  background: #fff;
}

.home-about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-about__image {
  position: relative;
}

.home-about__image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.home-about__image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #a30010 0%, #d4001a 100%);
  border-radius: 20px;
  z-index: -1;
}

.home-about__content {
  max-width: 500px;
}

.home-about__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #a30010;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-about__content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 20px;
  line-height: 1.2;
}

.home-about__content p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 16px;
}

.home-about__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #a30010;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.home-about__link:hover {
  gap: 14px;
}

.home-about__link svg {
  width: 20px;
  height: 20px;
}

/* Menu Section */
.home-menus {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.home-menus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/Home/inside.jpg') center/cover;
  opacity: 0.08;
}

.home-menus__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.home-menus__header {
  text-align: center;
  margin-bottom: 60px;
}

.home-menus__header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}

.home-menus__header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.home-menus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-menus__card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.home-menus__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.home-menus__card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: all 0.3s ease;
}

.home-menus__card:hover .home-menus__card-icon {
  background: linear-gradient(135deg, #a30010 0%, #d4001a 100%);
  box-shadow: 0 10px 30px rgba(163, 0, 16, 0.3);
}

.home-menus__card:hover .home-menus__card-icon span {
  filter: grayscale(1) brightness(10);
}

.home-menus__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.home-menus__card p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

/* Testimonials Section */
.home-testimonials {
  padding: 100px 20px;
  background: #f8fafc;
}

.home-testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
}

.home-testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.home-testimonials__header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.home-testimonials__header p {
  font-size: 1.1rem;
  color: #64748b;
  margin: 0;
}

.home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.home-testimonials__card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.home-testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.home-testimonials__stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.home-testimonials__text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px;
}

.home-testimonials__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-testimonials__avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #a30010 0%, #d4001a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.home-testimonials__author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 2px;
}

.home-testimonials__author-info span {
  font-size: 0.85rem;
  color: #64748b;
}

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

.home-testimonials__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #a30010 0%, #d4001a 100%);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(163, 0, 16, 0.25);
}

.home-testimonials__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(163, 0, 16, 0.35);
}

/* Social Section */
.home-social {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.home-social::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.home-social::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(163, 0, 16, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.home-social__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.home-social__content {
  max-width: 550px;
}

.home-social__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 119, 242, 0.2);
  color: #60a5fa;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.home-social__content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.1;
}

.home-social__content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin: 0 0 32px;
}

.home-social__stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}

.home-social__stat {
  display: flex;
  flex-direction: column;
}

.home-social__stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.home-social__stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.home-social__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #1877f2;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.home-social__btn:hover {
  background: #166fe5;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(24, 119, 242, 0.5);
}

.home-social__btn svg {
  width: 22px;
  height: 22px;
}

.home-social__feed {
  position: relative;
}

.home-social__feed-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.home-social__feed-card:hover {
  transform: rotate(0deg);
}

.home-social__feed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.home-social__feed-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.home-social__feed-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-social__feed-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-social__feed-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
}

.home-social__feed-handle {
  font-size: 0.8rem;
  color: #64748b;
}

.home-social__feed-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.home-social__feed-embed {
  background: #f8fafc;
  display: flex;
  justify-content: center;
  padding: 0;
}

.home-social__feed-embed iframe {
  display: block;
}

.home-social__feed-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1877f2;
  text-decoration: none;
  border-top: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.home-social__feed-cta:hover {
  background: #f0f7ff;
  gap: 12px;
}

.home-social__feed-cta svg {
  width: 16px;
  height: 16px;
}

/* Location Section */
.home-location {
  padding: 100px 20px;
  background: #f8fafc;
}

.home-location__container {
  max-width: 1200px;
  margin: 0 auto;
}

.home-location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}

.home-location__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.home-location__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.home-location__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.home-location__image-overlay span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.home-location__content {
  padding: 20px 0;
}

.home-location__badge {
  display: inline-block;
  background: rgba(163, 0, 16, 0.1);
  color: #a30010;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.home-location__content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 32px;
}

.home-location__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.home-location__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.home-location__detail svg {
  width: 24px;
  height: 24px;
  color: #a30010;
  flex-shrink: 0;
  margin-top: 2px;
}

.home-location__detail div {
  display: flex;
  flex-direction: column;
}

.home-location__detail strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.home-location__detail span,
.home-location__detail a {
  font-size: 1rem;
  color: #64748b;
  text-decoration: none;
}

.home-location__detail a:hover {
  color: #a30010;
}

.home-location__actions {
  display: flex;
  gap: 12px;
}

.home-location__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.home-location__btn--primary {
  background: linear-gradient(135deg, #a30010 0%, #d4001a 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(163, 0, 16, 0.3);
}

.home-location__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(163, 0, 16, 0.4);
}

.home-location__btn--secondary {
  background: #fff;
  color: #1a1a2e;
  border: 2px solid #e2e8f0;
}

.home-location__btn--secondary:hover {
  border-color: #a30010;
  color: #a30010;
}

.home-location__btn svg {
  width: 18px;
  height: 18px;
}

.home-location__map {
  height: 350px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.home-location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .home-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-hero__content {
    max-width: 700px;
    margin: 0 auto;
  }

  .home-hero__buttons {
    justify-content: center;
  }

  .home-hero__image {
    display: none;
  }

  .home-about__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .home-about__content {
    max-width: none;
    text-align: center;
  }

  .home-about__image::before {
    display: none;
  }

  .home-menus__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 100px 20px 80px;
    min-height: auto;
  }

  .home-hero h1 {
    font-size: 2.5rem;
  }

  .home-hero__subtitle {
    font-size: 1.1rem;
  }

  .home-hero__buttons {
    flex-direction: column;
  }

  .home-hero__btn {
    width: 100%;
    justify-content: center;
  }

  .hours-banner__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-about,
  .home-menus,
  .home-testimonials,
  .home-social,
  .home-location {
    padding: 60px 20px;
  }

  .home-about__content h2,
  .home-menus__header h2,
  .home-testimonials__header h2 {
    font-size: 2rem;
  }

  .home-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .home-social__container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .home-social__content {
    max-width: 100%;
  }

  .home-social__content h2 {
    font-size: 2.25rem;
  }

  .home-social__stats {
    justify-content: center;
  }

  .home-social__feed-card {
    transform: none;
    max-width: 380px;
    margin: 0 auto;
  }

  .home-location__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-location__image img {
    height: 300px;
  }

  .home-location__content h2 {
    font-size: 2rem;
  }

  .home-location__actions {
    flex-direction: column;
  }

  .home-location__btn {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hours-banner__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-menus__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .home-menus__card {
    padding: 24px 16px;
  }

  .home-menus__card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}
