/* Welcome Section */
.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.welcome-text h3 {
  margin-bottom: 16px;
}

.welcome-text p {
  margin-bottom: 24px;
}

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

.welcome-image img {
  transition: transform 0.5s ease;
}

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

@media (max-width: 768px) {
  .welcome-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .welcome-image {
    order: -1;
  }
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h3 {
  margin-bottom: 16px;
}

.about-text p {
  margin-bottom: 24px;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--box-shadow);
}

.about-image img {
  transition: transform 0.5s ease;
}

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

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 24px 0;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: var(--warm-taupe);
  margin-bottom: 12px;
}

.feature h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--pearl-white);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--warm-taupe);
  opacity: 0.1;
  transition: height 0.3s ease;
  z-index: -1;
}

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

.service-card:hover:before {
  height: 100%;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--warm-taupe);
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--medium-gray);
}

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

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

/* Featured Rooms Section */
.room-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.room-card {
  background-color: var(--pearl-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
  position: relative;
}

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

.room-card.featured {
  transform: scale(1.05);
  z-index: 2;
}

.room-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.room-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-price {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--crimson-red);
  color: var(--pearl-white);
  padding: 8px 16px;
  font-weight: 500;
}

.featured-tag {
  position: absolute;
  top: 16px;
  left: -32px;
  background-color: var(--warm-taupe);
  color: var(--pearl-white);
  padding: 6px 40px;
  font-size: 0.9rem;
  transform: rotate(-45deg);
  font-weight: 500;
}

.room-details {
  padding: 24px;
}

.room-details h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.room-details p {
  margin-bottom: 16px;
  color: var(--medium-gray);
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.room-features span {
  margin-right: 16px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.room-features span i {
  margin-right: 8px;
  color: var(--warm-taupe);
}

.view-all-rooms {
  text-align: center;
}

@media (max-width: 992px) {
  .room-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .room-card.featured {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .room-slider {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .room-card.featured {
    grid-column: auto;
    transform: none;
  }
  
  .room-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* Gaming Experience Section */
.gaming-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gaming-text h3 {
  margin-bottom: 16px;
}

.gaming-text p {
  margin-bottom: 24px;
}

.gaming-stats {
  display: flex;
  justify-content: space-between;
  margin: 32px 0;
}

.stat {
  text-align: center;
}

.stat .count {
  display: block;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--crimson-red);
  margin-bottom: 8px;
}

.stat .label {
  font-size: 1rem;
  color: var(--medium-gray);
}

.gaming-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--box-shadow);
}

.gaming-image img {
  transition: transform 0.5s ease;
}

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

@media (max-width: 768px) {
  .gaming-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Events Section */
.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.event-card {
  background-color: var(--pearl-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
}

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

.event-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.event-details {
  padding: 24px;
}

.event-date {
  display: inline-block;
  background-color: var(--warm-taupe);
  color: var(--pearl-white);
  padding: 4px 12px;
  font-size: 0.8rem;
  margin-bottom: 16px;
  border-radius: 2px;
}

.event-details h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.event-details p {
  margin-bottom: 16px;
  color: var(--medium-gray);
}

@media (max-width: 992px) {
  .event-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .event-cards {
    grid-template-columns: 1fr;
  }
}

/* Testimonials Section */
.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background-color: var(--pearl-white);
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
}

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

.testimonial-quote {
  margin-bottom: 24px;
  position: relative;
}

.testimonial-quote i {
  color: var(--warm-taupe);
  font-size: 1.5rem;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-quote p {
  padding-left: 32px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}

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

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

@media (max-width: 992px) {
  .testimonial-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonial-slider {
    grid-template-columns: 1fr;
  }
}

/* Newsletter Section */
.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-text {
  flex: 1;
  padding-right: 48px;
}

.newsletter-text h2 {
  color: var(--pearl-white);
  margin-bottom: 16px;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.newsletter-form {
  flex: 1;
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 2px 0 0 2px;
  font-family: var(--body-font);
}

.newsletter-form button {
  border-radius: 0 2px 2px 0;
}

@media (max-width: 768px) {
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-text {
    padding-right: 0;
    margin-bottom: 24px;
  }
  
  .newsletter-form {
    width: 100%;
  }
}