/* Reset / base */
*,
*::before,
*::after {
  box-sizing: border-box;
}


body {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
  margin: 0;
  background: #222;
  color: #fff;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

b,
strong {
  font-weight: 800;
}

a {
  color: #1a73e8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout helpers */

.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

.section-grey {
  background: #0F0F0F;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Header */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
}

.logo-sub {
  font-size: 0.8rem;
  color: #777;
}

.main-nav a {
  margin-left: 1rem;
  font-size: 0.95rem;
  color: #333;
}

.main-nav a:hover {
  color: #1a73e8;
}

/* Hero */

.hero {
  position: relative;
  height: 65vh;
  min-height: 380px;
  background-image: url("images/living-room-6.webp");
  /* replace with your photo */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Buttons */

.btn-primary {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: #1a73e8;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: #1257b8;
}

/* Two columns */

.two-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.features-list {
  text-align: center;
  list-style: none;
  padding: 1em;
  border: 2px solid #d36600;
  margin: 0;
  border-radius: 2em;
}

.features-list li+li {
  margin-top: 0.4rem;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 32px;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 1/1;
  display: grid;
  align-content: center;
  justify-content: center;
}

.gallery-img {
  width: 100%;
  padding-bottom: 65%;
  background-size: cover;
  background-position: center;
}

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.9rem;
  background: #ddd;
}

/* Map placeholder */

.map-embed {
  width: 100%;
  min-height: 320px;
  border-radius: 8px;
}

/* Contact */

.contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
}

.contact-list li+li {
  margin-top: 0.3rem;
}

.contact-form {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
}

.form-row label {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.form-row input,
.form-row textarea {
  padding: 0.45rem 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #1a73e8;
}

.form-status {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #1a73e8;
}

/* Footer */

.site-footer {
  background: #111;
  color: #eee;
  padding: 1rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-small {
  color: #aaa;
}

/* Responsive */

@media (max-width: 900px) {
  .two-cols {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .main-nav a {
    margin-left: 0;
    margin-right: 0.8rem;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 60vh;
    min-height: 320px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox.hidden {
  display: none;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
}

.lightbox-nav span {
  font-size: 60px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.video {
  max-width: 360px;
  width: 100%;
  margin: 1em auto;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
}


