/* Base Styles */
:root {
  --primary-color: #8B0000;
  --secondary-color: #D4AF37;
  --accent-color: #2C3E50;
  --text-color: #333333;
  --light-text: #FFFFFF;
  --bg-color: #F5F5F5;
  --dark-bg: #1A1A1A;
  --border-radius: 4px;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--secondary-color);
}

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

ul {
  list-style: none;
}

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

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

/* Header */
.header {
  background-color: rgba(26, 26, 26, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--light-text);
  font-weight: 400;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--secondary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--light-text);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/1579739/pexels-photo-1579739.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  color: var(--light-text);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  padding-right: 2rem;
}

.hero-content h1 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.hero-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  height: 400px;
  object-fit: cover;
  width: 100%;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.underline {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 0.5rem auto 0;
}

/* About Section */
.about-preview {
  background-color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 450px;
}

.about-img-1, .about-img-2 {
  position: absolute;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  object-fit: cover;
}

.about-img-1 {
  width: 70%;
  height: 300px;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-img-2 {
  width: 60%;
  height: 250px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.about-text h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Services Section */
.services {
  background-color: var(--bg-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 1.5rem;
  height: 180px;
  overflow: hidden;
  border-radius: 4px;
}

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

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

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Hotels Section */
.top-hotels {
  background-color: #fff;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.hotel-card {
  background-color: var(--bg-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.hotel-image {
  height: 250px;
  overflow: hidden;
}

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

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

.hotel-content {
  padding: 2rem;
}

.hotel-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.location {
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hotel-content p {
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo .logo-text {
  margin-bottom: 1rem;
}

.footer-links h4, .footer-contact h4 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a, .footer-contact a {
  color: var(--light-text);
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--secondary-color);
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

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

.footer-bottom p {
  margin-bottom: 0;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--dark-bg);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--dark-bg);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

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

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

/* Page Banner */
.page-banner {
  padding: 150px 0 50px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/1579739/pexels-photo-1579739.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--light-text);
}

.page-banner h1 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

/* About Page Specific */
.about-content-full {
  background-color: #fff;
}

.about-history, .about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.about-mission {
  margin-bottom: 4rem;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-text h3 {
  color: var(--accent-color);
  margin: 1.5rem 0 1rem;
}

.about-text ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.about-text li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

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

.about-team h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: var(--bg-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  margin: 1rem 0 0.5rem;
  padding: 0 1rem;
}

.team-member p {
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0 1rem 1rem;
}

/* Services Page Specific */
.services-full {
  background-color: #fff;
}

.service-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.service-detailed.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-detailed.reverse .service-info {
  direction: ltr;
}

.service-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-info h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Hotels Page Specific */
.hotels-full {
  background-color: #fff;
}

.hotel-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.hotel-featured.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.hotel-featured.reverse .hotel-featured-content {
  direction: ltr;
}

.hotel-featured-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hotel-featured-content h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hotel-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature h4 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

/* Contact Page Specific */
.contact-section {
  background-color: #fff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-info h2, .contact-form-container h2, .map-container h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-item p {
  margin-bottom: 0.5rem;
}

.contact-form {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
}

.form-group textarea {
  resize: vertical;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.location-card {
  background-color: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.location-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.location-card p {
  margin-bottom: 0.5rem;
}

/* Privacy Policy & Terms Pages */
.policy-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.policy-section h3 {
  color: var(--accent-color);
  margin: 1.5rem 0 1rem;
}

.policy-section p {
  margin-bottom: 1rem;
}

.policy-section ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.policy-section li {
  margin-bottom: 0.8rem;
  list-style-type: disc;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hotel-featured, .hotel-featured.reverse,
  .about-history, .about-mission,
  .service-detailed, .service-detailed.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
  
  .hotel-featured-content, .service-info {
    direction: ltr;
  }
  
  .hotels-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero .container, .about-content, .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-content {
    padding-right: 0;
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .nav-links {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--dark-bg);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1.5rem;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .page-banner {
    padding: 120px 0 40px;
  }
  
  .services-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  
  .about-images {
    height: 350px;
  }
}