/* Reset + base styles */
@import url('https://fonts.googleapis.com/css2?family=Gabriela&family=Merienda:wght@300..900&display=swap');

:root {
    --pc: #641B2E;
    --sc: #BE5B50;
    --ft: #FBDB93;
    --ft2: #d6620a;
    --bg: rgb(252, 250, 250);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gabriela", serif;
}

body {
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
  color: #333;
  background: var(--ft);
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: var(--pc);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--ft);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--ft);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #c47d30;
}

.hamburger {
  display: none;
  background: none;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  color: var(--ft)
}

/* Hero Section */


.hero img {
    width: 100%;
    height: 100%;
    margin-top: 55px;
}


/*About Section */
.about {
  padding: 4rem 2rem;
  background-color: #fff7f0;
  font-family: "Merienda", cursive;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #c47d30;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
/*Gallery Section*/
.gallery {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #c47d30;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 0.5rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}


/*Contact*/

.contact {
  padding: 4rem 2rem;
  background: var(--ft);
  max-width: 700px;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
  color: #c47d30;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  background: var(--bg);
  color: var(--pc);
  border: none;
  padding: 0.75rem;
  font-size: 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

form button:hover {
  background: var(--pc);
  color: var(--ft);
}

.form-response {
  text-align: center;
  margin-top: 1rem;
  color: green;
  font-weight: bold;
}

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

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: var(--pc);
  font-size: 0.9rem;
  color: var(--ft);
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 2rem;
    background: var(--pc);
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
