:root {
  --primary-bg: #f4e1e1;
  --dark-bg: #1e1e1e;
  --accent: #d4a5a5;
  --light: #ffffff;
  --text-dark: #333;
  --text-light: #eee;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header */
header.navbar {
  background: var(--dark-bg);
  color: var(--light);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

header .logo a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
}

/* Nav */
nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Contact Hero */
.contact-hero {
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(120deg, #f7d9d9, #fcecec);
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 15px;
  color: #4a2c2c;
}

.contact-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  color: #555;
}

.contact-hero a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

/* Form Section */
.contact-form-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #fff;
}

.form-container {
  background: #fff9f9;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  width: 100%;
  max-width: 600px;
}

.form-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #b46b75;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
}

button {
  background: var(--accent);
  color: var(--light);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: #b87d7d;
}

/* Footer */
footer {
  text-align: center;
  background: var(--dark-bg);
  color: var(--light);
  padding: 20px;
  margin-top: 40px;
}

/* Responsive Styles for Hamburger */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: var(--dark-bg);
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 20px;
    border-radius: 0 0 10px 10px;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}
