/* FONTS AND COLORS */
:root {
  --primary-color: #0a2342; /* Navy Blue */
  --accent-color: #d4af37;  /* Gold */
  --text-color: #333;
  --bg-light: #f9f9f9;
  --white: #fff;
}

body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: var(--white);
  border-bottom: 2px solid var(--accent-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  margin: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* HERO SECTION */
.hero {
  height: 40vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  text-align: center;
  background: rgba(10, 35, 66, 0.6);
  padding: 40px;
  border-radius: 12px;
  color: var(--white);
}

.hero-buttons .btn {
  margin: 30px;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn.primary {
  background: var(--accent-color);
  color: var(--primary-color);
}

.btn.secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--accent-color);
}

.btn:hover {
  opacity: 0.9;
}

/* FEATURES */
.features .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  text-align: center;
  margin: 40px auto;
}

.feature-item {
  padding: 20px;
  background: var(--bg-light);
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.1rem;
}

/* ABOUT SECTION */
.about {
  height: 40vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
}

.about img {
  width: 100%;
  border-radius: 10px;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* LIVING */
.living .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.living img {
  width: 100%;
  border-radius: 8px;
}

.subtitle {
  font-style: italic;
  color: var(--accent-color);
  text-align: center;
}

.description {
  text-align: center;
  margin-top: 20px;
}

/* BUDGET */
.budget {
  background: var(--bg-light);
  padding: 40px 0;
  text-align: center;
}

.highlight {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-color);
  margin: 20px 0;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-info p {
  margin: 10px 0;
}

/* FOOTER */
.footer {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 15px;
}
