/* ========== CSS Variables ========== */
:root {
  --color-bg-light: #fef9f4;
  --color-bg-accent: #f2e8d8;
  --color-gold: #b2935c;
  --color-gold-dark: #a4834b;
  --color-taupe: #7a6844;
  --color-brown: #5a4a2c;
  --color-white: #fff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html, body {
  font-family: var(--font-body);
  background: linear-gradient(to bottom right, var(--color-bg-light), var(--color-bg-accent));
  color: var(--color-brown);
  text-align: center;
  min-height: 100vh;
}

a, button {
  transition: all 0.3s;
}

/* Header Container */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4vh 1rem 2vh;
  position: relative;
}

/* Brand Name */
.brand-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

/* Logo */
.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(178, 147, 92, 0.4));
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: var(--color-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Navigation Menu */
.main-nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.2rem;
}

.main-nav a {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--color-taupe);
  position: relative;
  padding: 0.2em 0.1em;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-gold);
}

.main-nav a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-gold);
  transition: width 0.3s;
  margin: 0 auto;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

/* CTA Button */
.cta-button {
  background-color: var(--color-gold);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(178, 147, 92, 0.12);
  margin-top: 0.5rem;
  display: inline-block;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--color-gold-dark);
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Focus Styles for Accessibility */
a:focus, button:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Hero Content */
.hero-content {
  margin-top: 4vh;
  animation: fadeIn 1s ease;
}

.coming-soon {
  font-size: 1.5rem;
  color: var(--color-taupe);
  margin-top: 1rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

/* Subtle Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: none;}
}

/* Footer */
.site-footer {
  margin-top: 4vh;
  padding: 2vh 0 1vh;
  color: var(--color-taupe);
  font-size: 1rem;
  background: transparent;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--color-gold);
  margin: 0 auto 1rem auto;
  width: 90%;
  max-width: 400px;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background-color: rgba(254, 249, 244, 0.97);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: absolute;
    top: 4.5rem;
    left: 0;
    z-index: 9;
  }

  .main-nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .brand-name {
    font-size: 2rem;
  }

  .cta-button {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .coming-soon {
    font-size: 1.3rem;
  }
}

@media (min-width: 1024px) {
  .brand-name {
    font-size: 3rem;
  }

  .logo {
    max-width: 300px;
  }

  .cta-button {
    font-size: 1.1rem;
  }

  .main-nav a {
    font-size: 1.2rem;
  }

  .coming-soon {
    font-size: 1.6rem;
  }
}

/* ========== Contact Form ========== */

.contact-form-section {
  max-width: 700px;
  margin: 4vh auto;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(178, 147, 92, 0.1);
  text-align: left;
  font-family: var(--font-body);
}

.contact-form-section h2 {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

form#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.form-row label,
fieldset legend {
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  padding: 0.75rem;
  border: 1px solid var(--color-gold);
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-body);
  resize: vertical;
}

textarea {
  min-height: 120px;
  max-height: 240px;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--color-gold-dark);
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

fieldset.form-row {
  border: none;
  padding: 0;
}

fieldset label {
  margin-right: 1.5rem;
  font-weight: 500;
  color: var(--color-taupe);
}

input[type="radio"] {
  margin-right: 0.4rem;
  accent-color: var(--color-gold);
}

form button.cta-button {
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
}

