/* 
      .--..--..--..--..--..--.
    .' \  (`._   (_)     _   \
  .'    |  '._)         (_)  |
  \ _.')\      .----..---.   /
  |(_.'  |    /    .-\-.  \  |
  \     0|    |   ( O| O) | o|
   |  _  |  .--.____.'._.-.  |
   \ (_) | o         -` .-`  |
    |    \   |`-._ _ _ _ _\ /
    \    |   |  `. |_||_|   |
    | o  |    \_      \     |     -.   .-.
    |.-.  \     `--..-'   O |     `.`-' .'
  _.'  .' |     `-.-'      /-.__   ' .-'
.' `-.` '.|='=.='=.='=.='=|._/_ `-'.'
`-._  `.  |________/\_____|    `-.'
   .'   ).| '=' '='\/ '=' |
   `._.`  '---------------'
           //___\   //___\
             ||       ||
             ||_.-.   ||_.-.
            (_.--__) (_.--__)
       

 Insert all your glorious CSS styles below! */

/* Font Face Declarations */
@font-face {
  font-display: swap;
  font-family: 'Averia Sans Libre';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/averia-sans-libre-v20-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Averia Sans Libre';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/averia-sans-libre-v20-latin-700.woff2') format('woff2');
}

/* ===== BASE STYLES ===== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Averia Sans Libre', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
  padding: 0;
  background-color: #F5E6D3;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

p {
  font-size: 1em;
  margin: 0 0 1rem 0;
}

h1, h2, h3, h4, h5 {
  font-family: 'Averia Sans Libre', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0;
}

h1 { font-size: 3.05em; }
h2 { font-size: 2.44em; }
h3 { font-size: 1.95em; }
h4 { font-size: 1.56em; }
h5 { font-size: 1.25em; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===== HEADER NAVIGATION ===== */
header {
  background-color: #2C3E2C;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
  font-size: 1.25em;
  font-weight: 700;
}

.logo::before {
  content: "☕";
  font-size: 1.5em;
}

.nav-menu {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background-color: #C8E6C9;
  color: #2C3E2C;
}

/* ===== MAIN CONTENT ===== */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  flex: 1;
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 500px;
}

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

.hero h1 {
  color: #2C3E2C;
  margin-bottom: 1.5rem;
  font-size: 3.5em;
}

.hero-subtitle {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== FEATURED CATEGORIES ===== */
.featured-categories {
  padding: 4rem 2rem;
  background-color: #FFFFFF;
}

.featured-categories h2 {
  text-align: center;
  color: #2C3E2C;
  margin-bottom: 3rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background-color: #FFFFFF;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid #E0E0E0;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #A5D6A7;
}

.category-icon {
  font-size: 3.5em;
  margin-bottom: 1rem;
}

.category-card h3 {
  color: #2C3E2C;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: #555;
  margin: 0;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 4rem 2rem;
  background-color: #F5E6D3;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.features-text h2 {
  color: #2C3E2C;
  margin-bottom: 1.5rem;
}

.features-text > p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5em;
  color: #A5D6A7;
  background-color: #C8E6C9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  color: #2C3E2C;
  margin-bottom: 0.25rem;
  font-size: 1.1em;
}

.feature-item p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.features-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #2C3E2C 0%, #1a2b1a 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2em;
  margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #2C3E2C;
  color: #FFFFFF;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.btn:hover {
  background-color: #A5D6A7;
  color: #2C3E2C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1em;
}

.cta-section .btn {
  background-color: #A5D6A7;
  color: #2C3E2C;
}

.cta-section .btn:hover {
  background-color: #FFFFFF;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 2rem;
}

.about-intro {
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-intro h1 {
  color: #2C3E2C;
  margin-bottom: 1.5rem;
}

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

.image-placeholder {
  background-color: #E0E0E0;
  border-radius: 10px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.values-section {
  background-color: #FFFFFF;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.values-section h2 {
  text-align: center;
  color: #2C3E2C;
  margin-bottom: 3rem;
}

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

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #F9FBF9 0%, #FFFFFF 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid #E0E0E0;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #C8E6C9;
}

.value-icon {
  font-size: 3em;
  margin-bottom: 1rem;
  display: block;
}

.value-card h4 {
  color: #2C3E2C;
  margin: 0 0 1rem 0;
}

.value-card p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ===== BROWSE PAGE ===== */
.filter-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background-color: #FFFFFF;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-dropdown {
  padding: 0.75rem 1.5rem;
  border: 2px solid #C8E6C9;
  border-radius: 8px;
  background-color: #FFFFFF;
  font-family: 'Averia Sans Libre', sans-serif;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-dropdown:hover {
  border-color: #A5D6A7;
}

.category-section {
  padding: 2rem;
  margin-bottom: 3rem;
}

.category-section h2 {
  color: #2C3E2C;
  margin-bottom: 2rem;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.place-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #A5D6A7;
}

.place-image {
  background-color: #E0E0E0;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.place-info {
  padding: 1.5rem;
}

.place-info h4 {
  margin: 0 0 0.5rem 0;
  color: #2C3E2C;
  font-size: 1.4em;
}

.place-info p {
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* ===== PLACE DETAIL PAGE ===== */
.place-detail {
  padding: 2rem;
}

.place-header {
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.place-header h1 {
  color: #2C3E2C;
  margin-bottom: 1rem;
}

.place-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2em;
  color: #FFA500;
  margin-bottom: 1rem;
}

.place-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
}

.meta-icon {
  font-size: 1.3em;
}

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

.place-main {
  background-color: #FFFFFF;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.place-main h2 {
  color: #2C3E2C;
  margin-bottom: 1rem;
}

.place-sidebar {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.place-sidebar h3 {
  color: #2C3E2C;
  margin-bottom: 1.5rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 700;
  color: #333;
}

.info-value {
  color: #555;
}

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

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: #F5E6D3;
  border-radius: 8px;
}

.amenity-icon {
  font-size: 1.3em;
}

/* ===== CONTACT PAGE ===== */
.contact-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-intro {
  text-align: center;
  margin-bottom: 2rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(200, 230, 201, 0.9) 0%, rgba(165, 214, 167, 0.9) 100%);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-intro h1 {
  color: #2C3E2C;
  margin-bottom: 1rem;
}

.contact-form {
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #2C3E2C;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-family: 'Averia Sans Libre', sans-serif;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #A5D6A7;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.radio-option:hover {
  border-color: #A5D6A7;
  background-color: rgba(200, 230, 201, 0.1);
}

.radio-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.radio-option label {
  flex: 1;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: #2C3E2C;
  color: #FFFFFF;
  border: none;
  border-radius: 25px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #A5D6A7;
  color: #2C3E2C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== FOOTER ===== */
footer {
  background-color: #2C3E2C;
  color: #FFFFFF;
  padding: 3rem 2rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 2rem auto;
}

.footer-section h4 {
  color: #C8E6C9;
  margin-bottom: 1rem;
  font-size: 1.2em;
}

.footer-section p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.footer-section a {
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #A5D6A7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.copyright {
  margin: 0;
  font-size: 0.95em;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
  
  .hero-image {
    height: 350px;
  }
  
  .features-content {
    grid-template-columns: 1fr;
  }
  
  .place-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.5em;
  }
  
  main {
    padding: 0;
  }
  
  .categories-grid,
  .places-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}