/* Base styles */
:root {
  --primary-color: #FF0000; /* Updated to match logo red */
  --secondary-color: #00A699;
  --accent-color: #CF0000; /* Darker shade of red for hover states */
  --text-color: #484848;
  --bg-color: #FFFFFF;
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Header styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}



/* Desktop/Tablet Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.desktop-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu {
  display: none;
  border: none;
  background: none;
  padding: 8px;
  cursor: pointer;
  font-size: 24px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.mobile-menu:hover {
  color: var(--accent-color);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 0;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-nav a {
  color: var(--text-color);
  text-decoration: none;
  display: block;
  padding: 15px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: rgba(255,0,0,0.05);
  color: var(--primary-color);
  padding-left: 25px;
}

/* Main content area */
.main-content {
  flex: 1;
  padding: 40px 0;
}

/* Footer styles */
footer {
  background-color: var(--bg-color);
  color: var(--text-color);
  border-top: 1px solid #EBEBEB;
  padding: 2rem 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  margin-bottom: 1rem;
}

.footer-section h3 {
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style-type: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

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

/* Responsive styles */
@media (max-width: 768px) {
 


  .mobile-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 8px;
  }

  .desktop-nav {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Booking Page Styles */
.booking-layout {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: start;
}

.property-content {
  flex: 1;
  max-width: 100%;
}

.property-header {
  margin-bottom: 2rem;
}

.property-title-section {
  position: relative;
}

.property-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.property-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.property-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color);
}

.property-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  position: absolute;
  top: 0;
  right: 0;
}

.booking-sidebar {
  flex-shrink: 0;
  width: 400px;
  position: sticky;
  top: 100px;
}

/* Photo Gallery */
.photo-gallery {
  margin-bottom: 2rem;
}

.main-photo {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gallery-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-main-image:hover {
  transform: scale(1.02);
}

.photo-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.thumbnail {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail.active {
  border-color: var(--primary-color);
}

.thumbnail img {
  width: 100px;
  height: 70px;
  object-fit: cover;
}

.thumbnail:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Property Description */
.property-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

/* Key Info */
.key-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Calendar */
.calendar-section {
  margin-bottom: 2rem;
}

.calendar-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.calendar-widget {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-nav {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.calendar-nav:hover {
  background-color: rgba(255,0,0,0.1);
}

.calendar-month {
  font-weight: 600;
  font-size: 1.1rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-day.header {
  font-weight: 600;
  color: var(--text-color);
  cursor: default;
}

.calendar-day.available {
  background-color: #e8f5e8;
  color: #2d5a2d;
}

.calendar-day.available:hover {
  background-color: var(--primary-color);
  color: white;
}

.calendar-day.unavailable {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.calendar-cell.unavailable {
  background-color: #eee;
  color: #aaa;
  pointer-events: none;
}

/* Calendar Legend */
.calendar-legend {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.legend-color.available {
  background-color: #e8f5e8;
  border: 1px solid #2d5a2d;
}

.legend-color.unavailable {
  background-color: #eee;
  border: 1px solid #aaa;
}

/* Host Section */
.host-section {
  margin-bottom: 2rem;
}

.host-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.host-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

.host-avatar img {
	min-width:60px; 
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.host-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.host-stats {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-color);
}

.host-stats i {
  color: var(--primary-color);
}

.host-bio {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
  margin-top: 0.5rem;
}

/* Amenities */
.amenities-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.amenity.available {
  color: var(--text-color);
}

.amenity.available:hover {
  background-color: rgba(255,0,0,0.05);
}

.amenity.unavailable {
  color: #999;
  text-decoration: line-through;
}

.amenity i {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.amenity.unavailable i {
  color: #999;
}

/* Booking Sidebar */
.booking-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}

/* Host Contact */
.host-contact {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.host-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.host-mini img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.host-mini strong {
  font-size: 1rem;
}

.host-mini p {
  font-size: 0.85rem;
  color: var(--text-color);
  margin: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--accent-color);
}

/* Booking Buttons */
.booking-buttons {
  margin-bottom: 1.5rem;
}

.btn-booking {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-booking.booking-com {
  background-color: #003580;
  color: white;
}

.btn-booking.booking-com:hover {
  background-color: #002455;
  transform: translateY(-1px);
}

.btn-booking.airbnb {
  background-color: #FF5A5F;
  color: white;
}

.btn-booking.airbnb:hover {
  background-color: #E04348;
  transform: translateY(-1px);
}

.btn-booking.whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-booking.whatsapp:hover {
  background-color: #1DA851;
  transform: translateY(-1px);
}

.btn-booking.email {
  background-color: #6c757d;
  color: white;
}

.btn-booking.email:hover {
  background-color: #5a6268;
  transform: translateY(-1px);
}

/* Share Section */
.share-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.share-section p {
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.social-share {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn.facebook {
  background-color: #1877F2;
}

.share-btn.whatsapp {
  background-color: #25D366;
}

.share-btn.email {
  background-color: #6c757d;
}

.share-btn.twitter {
  background-color: #1DA1F2;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,0,0,0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .booking-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .booking-sidebar {
    position: static;
    width: 100%;
    order: 99;
  }
}

@media (max-width: 768px) {
  .property-title {
    font-size: 2rem;
  }

  .property-price {
    font-size: 1.5rem;
  }

  .property-badge {
    position: static;
    margin-top: 1rem;
  }

  .key-info {
    flex-direction: column;
    gap: 1rem;
  }

  .host-card {
    flex-direction: column;
    text-align: center;
  }

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

  .booking-card {
    padding: 1.5rem;
  }

  .gallery-main-image {
    height: 250px;
  }

  .booking-sidebar {
    order: 99;
  }
}

@media (max-width: 480px) {
  .main-content .container {
    padding: 0 24px;
  }

  .property-title {
    font-size: 1.75rem;
  }

  .booking-card {
    padding: 1rem;
  }

  .thumbnail img {
    width: 80px;
    height: 60px;
  }
}