:root {
  --primary: #8B5E3C;
  --accent: #A87750;
  --bg-light: #F5F0EB;
  --bg-dark: #2E2A26;
  --transition: 0.3s ease;
  --font-size-base: 1rem;
  --spacing-unit: 1rem;
  --max-width: 1200px;
}

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

body {
  font-family: 'Uncial Antiqua', 'Noto Sans', serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-unit); /* Use variable for consistency */
}

/* Link Styles */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background var(--transition);
  text-align: center;
  /* Add default button colors */
  background-color: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--accent);
}

/* Social Links Default Styles */
.social-links a {
  width: 3.5rem;
  height: 3.5rem;
  background: #fff !important; /* Consider removing !important if possible */
  color: var(--primary) !important; /* Consider removing !important if possible */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: var(--spacing-unit);
  transition: all var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.social-links a:hover {
  background: var(--accent) !important; /* Consider removing !important if possible */
  color: #fff !important; /* Consider removing !important if possible */
  transform: scale(1.1);
}

/* Grid Layout for About Section */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Contact Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform var(--transition);
}

.card i { /* Style icons inside cards */
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block; /* Ensure icon takes space */
}

.card h3 { /* Style headings inside cards */
  font-family: 'Uncial Antiqua', serif;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

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

/* Footer Specific Styles */
footer {
  background: var(--bg-dark) url('https://www.transparenttextures.com/patterns/asfalt-dark.png') center/cover;
  color: #fff;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

footer .social-links h3,
footer .newsletter h3 {
  font-family: 'Uncial Antiqua', serif;
  margin-bottom: 1rem;
  color: #fff;
}

/* Add styles for newsletter form */
footer .newsletter form {
  display: flex;
  gap: 0.5rem;
}

footer .newsletter input[type="email"] {
  flex-grow: 1;
  padding: 0.75rem;
  border: 1px solid #ccc; /* Add border */
  border-radius: 4px;
}

footer .newsletter button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color var(--transition);
}

footer .newsletter button:hover {
  background-color: var(--accent);
}

/* Add styles for header/nav if needed */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--bg-light);
  border-bottom: 1px solid #ddd;
}

header .logo a {
  font-family: 'Uncial Antiqua', serif;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

header nav a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

header nav a:hover {
  color: var(--accent);
}

/* Hero Section Styles */
#hero {
  min-height: 80vh; /* Adjust height as needed */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--bg-light) url('https://images.pexels.com/photos/1170659/pexels-photo-1170659.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center/cover; /* Coffee background */
  color: var(--primary); /* Adjust text color for visibility */
  position: relative;
  padding: 2rem;
}

#hero .content {
  background: rgba(255, 255, 255, 0.8); /* Semi-transparent background for text */
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
}


#hero h1 {
  font-family: 'Uncial Antiqua', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

#hero .scroll-down {
  position: absolute;
  bottom: 2rem;
  font-size: 2rem;
  color: var(--primary);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Section Padding */
section {
  padding: 4rem 2rem;
}

section h2 {
  font-family: 'Uncial Antiqua', serif;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 2rem;
}

/* About Section Image */
#about img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Map Wrapper */
.map-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
  }

  header nav ul {
    justify-content: center;
  }

  .grid {
    grid-template-columns: 1fr; /* Stack grid items on smaller screens */
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .newsletter form {
    flex-direction: column;
  }
}
/* 404 Page Specific Styles */
.not-found-section {
  text-align: center;
  padding: 6rem 2rem;
  min-height: 60vh; /* Ensure it takes up significant space */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.not-found-section h1 {
  font-family: 'Uncial Antiqua', serif;
  font-size: 4rem; /* Larger font size for 404 */
  color: var(--primary);
  margin-bottom: 1rem;
}
.not-found-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555; /* Slightly muted text color */
}
.not-found-section .btn {
   margin-top: 1rem;
}
/* Logo in header */
.logo img {
  height: 2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}