:root {
  --luxury-green: #004d27;
  --gold-24kt: #d4af37;
  --accent-light: #f5f5f5;
  --text-dark: #1c1c1c;
}

body {
  font-family: 'Playfair Display', serif;
  background-color: var(--accent-light);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  background-color: var(--luxury-green);
  padding: 10px 20px;
}

nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: var(--accent-light);
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

#logo {
  width: 150px;
  height: auto;
  margin-right: 20px;
}

/* Sections */
section {
  padding: 40px 20px;
}

/* Hero */
#hero {
  position: relative;
  text-align: center;
  color: white;
}

#hero img {
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
}

/* Contact Form */
#contact-form {
  margin-top: 40px;
  text-align: center;
}

#contact-form h2 {
  font-size: 2em;
  color: var(--luxury-green);
  margin-bottom: 20px;
}

#contact-form iframe {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Iframe Styling */
iframe {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  max-width: 100%;
}

/* Buttons */
.btn, .btn-luxury {
  background: linear-gradient(135deg, var(--gold-24kt), var(--luxury-green));
  color: var(--accent-light);
  padding: 14px 35px;
  font-size: 1.1em;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.btn:hover, .btn-luxury:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Headings */
h1, h2, h3 {
  color: var(--luxury-green);
  text-align: center;
}

h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.2em;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Links */
a {
  color: var(--gold-24kt);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Form Styling */
form {
  max-width: 600px;
  margin: 0 auto;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
}

form button {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--gold-24kt), var(--luxury-green));
  color: var(--accent-light);
  padding: 12px 30px;
  font-size: 1.1em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

form button:hover {
  transform: scale(1.05);
}
