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

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Circle Pointer */
#circle-pointer {
  width: 15px;
  height: 15px;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s;
}

/* Header Styles */
.top-bar {
  background: #333;
  color: white;
  padding: 10px 30px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.top-bar span {
  font-size: 14px;
}

.top-bar i {
  margin-right: 5px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo img {
  height: 40px;
  width: auto;
}

.logo span {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff6b6b;
}

.btn-gradient {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s;
}

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

/* Hero Section */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://i.pinimg.com/736x/d2/48/df/d248dfc8e594f25f4c620e58f3f8a25c.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 100px;
  color: white;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 4em;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ff6b6b;
}

.hero h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #ff8e8e;
}

.hero p {
  margin-bottom: 30px;
  font-size: 1.1em;
}

/* About Section */
.about-section {
  padding: 80px 100px;
  text-align: center;
  background: #f9f9f9;
}

.about-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.about-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.circle-image {
  border-radius: 50%;
}

.rect-image {
  border-radius: 10px;
}

.skewed-image {
  transform: skew(-10deg);
}

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

/* Services Section */
.services {
  padding: 60px 30px;
  background: #3D3221;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Service Cards */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-row {
  display: flex;
  gap: 30px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #3D3221;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hover effect */
.service-row:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 122, 122, 0.4);
}

/* Custom Backgrounds */
.service-row:nth-child(1) {
  background: linear-gradient(135deg, #45413B, #3D3B00);
}

.service-row:nth-child(2) {
  background: linear-gradient(135deg, #3D3B00, #FF7A7A);
}

.service-row:nth-child(3) {
  background: linear-gradient(135deg, #FF7A7A, #45413B);
}

.service-row:nth-child(4) {
  background: linear-gradient(135deg, #45413B, #FF7A7A);
}

/* Image Styling */
.service-row img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Text Content */
.service-row h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffffff;
}

.service-row p {
  font-size: 15px;
  color: #f7f7f7;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-row img {
    width: 100%;
    height: auto;
  }
}

/* Hotels Section */
.hotels {
  padding: 80px 100px;
  background: #f9f9f9;
}

.hotels h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 50px;
}

.hotel-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hotel-row {
  display: flex;
  gap: 30px;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hotel-row img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.hotel-row div {
  flex: 1;
}

.hotel-row h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #333;
}

.hotel-row p {
  font-size: 1.1em;
  color: #666;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 60px 100px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff6b6b;
}

.footer-contact i {
  margin-right: 10px;
  color: #ff6b6b;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px;
  }
  
  .hero,
  .about-section,
  .services,
  .hotels,
  footer {
    padding: 60px 20px;
  }
  
  .service-row,
  .hotel-row {
    flex-direction: column;
  }
  
  .service-row:nth-child(even) {
    flex-direction: column;
  }
  
  .hotel-row img {
    width: 100%;
    height: 250px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 3em;
  }
  
  .about-images {
    grid-template-columns: 1fr;
  }
}
.more-content {
  display: none;
  font-size: 14px;
  color: #444;
  margin-top: 10px;
}
/* Blog Section */
.blog {
  padding: 60px 30px;
  background: #47443F;
  color: white;
}

.blog h2 {
  color:white;
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #bd00ff, #4d00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-posts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-card {
  flex: 1 1 calc(33.33% - 20px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #FF6B6B;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.blog-content a {
  text-decoration: none;
  color: #4d00ff;
  font-weight: bold;
  transition: color 0.3s;
}

.blog-content a:hover {
  color: #bd00ff;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .blog-card {
    flex: 1 1 100%;
  }
}

.read-more {
  display: inline-block;
  color: #4d00ff;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s;
}

.read-more:hover {
  color: #bd00ff;
}
