/* General Styles */
body {
  margin: 0;
  font-family: "Merriweather", serif;
  line-height: 1.6;
  color: #333;
  background-color: #EFEBEA;
  font-size: 18px;
}

/* General Section Styles */
section {
  padding: 60px 20px; /* Adds space around the content */
  margin-bottom: 40px; /* Space between each section */
  background-color: #FFFFFF; /* Default background color for sections */
  border-radius: 8px; /* Slightly rounded corners for a modern look */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

/* Hover Effect */
section:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Content Inside Section */
section .content {
  max-width: 1200px; /* Limits the content width for better readability */
  margin: 0 auto; /* Centers the content horizontally */
}

/* Headings */
h1, h2, h3 {
  font-family: "Optima", serif;
  color: #8C6E46;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  font-weight: bold;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

/* Paragraphs */
p {
  font-size: 16px;
  color: #333333;
  margin-bottom: 20px;
}

/* Links */
a {
  color: #8C6E46;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #B7A29F;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  border: 1px solid #8C6E46;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #EFEBEA;
  font-weight: bold;
}

/* Quotes */
blockquote {
  border-left: 5px solid #8C6E46;
  padding-left: 15px;
  font-style: italic;
  color: #8C6E46;
  margin: 20px 0;
}

/* Lists */
ul, ol {
  margin: 20px 0;
  padding-left: 40px;
}

li {
  margin-bottom: 10px;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Divs */
div {
  display: block;
}

/* Hero Section */
.hero {
  height: 70vh;
  background: linear-gradient(135deg, #333333, #EFEBEA);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  color: #FFFFFF;
  animation: fadeIn 2s ease-in;
}

.scroll-btn {
  background-color: #8C6E46;
  color: #EFEBEA;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background-color: #B7A29F;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns:  repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 50px;
}

.feature-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.icon {
  height: 50px;
  width: 50px;
  background-color: #8C6E46;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Gallery */
.gallery {
  padding: 50px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 15px;
}


.gallery-grid img {
  width: 100%;
  height: auto; 
  border-radius: 10px; 
  transition: transform 0.3s; 
}


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .features {
    padding: 20px;
  }
}
