* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, Arial, sans-serif;
  line-height: 1.5;

  /* background image across whole site */
  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: top center;
}

a {
	color: #ffffff;   
	text-decoration: none; 
}

/* main content width */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  color: #ffffff;
}

/* section spacing */
.section { padding: 48px 0; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  background: #000;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  /* important for mobile dropdown positioning */
  position: relative;
}

/* logo size */
.logo img {
  height: 80px;
  width: auto;
  display: block;
  max-width: 320px;
}

/* nav desktop */
.site-nav { display: flex; gap: 16px; }
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
}
.site-nav a:hover { background: rgba(255,255,255,0.12); }

.nav-toggle { display: none; }

/* buttons */
.btn {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid #111;
  text-decoration: none;
  color: #fff;
}
.btn.primary { background: #111; }

/* CTA wrapper */
.cta { display: flex; gap: 12px; flex-direction: column; }

/* grids */
.grid { display: grid; gap: 16px; }
.cards { grid-template-columns: 1fr; }
.gallery { grid-template-columns: 1fr 1fr; }

.card {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: rgba(0,0,0,0.35);
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.about-wrapper {
  display: flex;
  flex-direction: column;  
  gap: 30px;
  align-items: center;
}

.about-image {	
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  display: block;
  border: 8px solid white;
}

.about-text {
  max-width: 600px;
}

/* map */
.map iframe { width: 100%; height: 360px; border-radius: 12px; }

/* price list */
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-weight: bold;
}

/* ===== GET SOCIAL ===== */
.get-in-touch { text-align: left; color: white; }

.socials {
  display: flex;
  justify-content: left;
  gap: 24px;
  margin-top: 24px;
}

.socials a {
  width: 56px;
  height: 56px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.socials a:hover {
  transform: scale(1.15);
  background: #f2f2f2;
}

/* icons use currentColor (for Instagram stroke) */
.socials svg {
  width: 26px;
  height: 26px;
  color: #000;
  fill: currentColor;
}

/* footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 22px 0;
}

/* TABLET+ */
@media (min-width: 768px) {
  .cta { flex-direction: row; align-items: center; }
  .cards { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr 1fr; }

  .logo img { height: 100px; max-width: 500px; }
}

/* DESKTOP+ */
@media (min-width: 1024px) {
  .cards { grid-template-columns: 1fr 1fr 1fr; }
  .about-wrapper {
    flex-direction: row;      
    align-items: center;
    justify-content: center;
  }

  .about-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .about-text {
    flex: 1;
  }
}

/* MOBILE MENU */
@media (max-width: 800px) {
  .nav-toggle {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
  }

  .logo img { height: 35px; max-width: 175px; }

  .site-nav { display: none; }

  /* full-width dropdown under header */
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 10px;

    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: #000;
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  body {
	  background-attachment: fixed;
  }
}