
body {
  margin: 0;
  font-family: 'Antic Didone', serif;
  background-color: #f1ece0;
  color: #000000;
  line-height: 1.6;
  text-align: center;
}

/* Header Section */
.hero {
  background-color: #40340a;
  color: #f1ece0;
  padding-top: 1em;
}

.logo {
  max-width: 250px;
  
}

.logo-text h1 {
  margin: 0;
  font-size: 2.2rem;
}

.logo-text h2 {
  margin: 0.2rem 0;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.tagline {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Image Section */
.main-image img {
  width: 100%;
  height: auto;       
  max-height: 900px;  
  object-fit: cover;  
  display: block;
}


/* Content Section */
.content {
  max-width: 900px;   
  margin: 4rem auto;  
  padding: 0 1.5rem;
  text-align: justify; 
}

.content h3 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-weight: bolder;
  text-align: center; 
}


.content p {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
      font-weight: 600;
    /*letter-spacing: 1px;*/
}

/* Footer Section */
footer {
  background-color: #40340a;
  color: #f1ece0;
  padding: 0.1rem 1rem;
  padding-bottom: 2em;
}

footer p {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
}


.social-links {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%;
}

/* Group icons together */
.social-icons {
  display: flex;
  gap: 15px;  
}

.social-links a {
  color: #f1ece0;
  text-decoration: none;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #d4cba4;
}

.social-links .phon,
.social-links[href^="mailto"] {
  font-weight: bold;
}

/* Desktop / larger screens */
@media (min-width: 600px) {
  .social-links {
    justify-content: center; 
    gap: 15rem;
  }
}
@media (min-width: 1024px) {
  .content p {
    letter-spacing: 1px;
  }
}

@media (max-width: 767px) {
  .content {
 margin: 2rem 1rem 4rem 1rem;
   
  }
  footer p {
    font-size: 1.2rem;
}
.social-links a {
    font-size: 1.5rem;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
  .content {
 
    margin: 3rem 1rem 3rem 1rem; 
   
  }
}