/* ================================
   WEATHERMANDAN - CLEAN MASTER CSS
================================ */

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

/* BASE */
html {
  font-size: 100%;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  background-color: #0e0f11;
  color: #e9e9ea;
}

/* ================================
   CONTAINERS
================================ */
.container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.container--narrow {
  max-width: 760px;
}

.iframe-container {
  width: 100%;
  max-width: 700px;   /* controls how wide it can get */
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================
   HEADER / NAVIGATION
================================ */
.site-header {
  background-color: #070708;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #800080;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* LOGO + TITLE BLOCK */
.logo-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo img {
  height: 48px;
  width: auto;
}

/* SITE TITLE */
.site-title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-title .title {
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}

.site-title .tagline {
  font-size: 0.8rem;
  color: #800080;
  letter-spacing: 0.05em;
}

.site-title .description {
  font-size: 0.85rem;
  color: #9da0a6;
  max-width: 420px;
  display: block;
}

/* NAV */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

nav a {
  color: #bfc4cc;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #800080;
  transition: width 0.25s ease;
}

nav a:hover {
  color: #fff;
}

nav a:hover::after {
  width: 100%;
}

/* ================================
   HERO
================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
  align-items: center;
}

.hero .hero-text h1 {
  font-size: 2.4rem;
}

.hero .hero-text p {
  color: #cfcfcf;
}

/* ================================
   GRID
================================ */
.home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

/* TABLET */
@media (min-width: 600px) {
  .home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 900px) {
  .home-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    grid-template-columns: 1fr 480px;
  }
}

/* CARDS */
.home-card {
  background: #0f1113;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #1c1e22;
  transition: transform 0.2s ease;
}

.home-card:hover {
  transform: translateY(-4px);
}

.home-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.featured-card {
  max-width: 100%;
}

.featured-card iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.windy-card {
  grid-column: 1 / -1;
}

.windy-card iframe {
  width: 100%;
  height: 650px;
  border: none;
}

/* ================================
   TYPOGRAPHY
================================ */
h1, h2, h3 {
  color: #fff;
  font-weight: 700;
}

p {
  color: #d6d6d6;
  margin-bottom: 0.7rem;
  max-width: 70ch;
}

.amber {
  color: #d6a75c;
}

/* ================================
   BUTTONS
================================ */
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #d6a75c;
  color: #d6a75c;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.button:hover {
  background: #d6a75c;
  color: #071014;
}

/* ================================
   FOOTER
================================ */
.site-footer {
  background: #070708;
  color: #9da0a6;
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #151617;
  margin-top: 2rem;
}

/* ================================
   ACCESSIBILITY
================================ */
a:focus {
  outline: 2px solid rgba(128, 0, 128, 0.3);
  outline-offset: 2px;
}

/* ================================
   MOBILE HEADER ADJUSTMENTS
================================ */
@media (max-width: 700px) {
  .logo-block {
    align-items: flex-start;
  }

  .site-title .title {
    font-size: 1.2rem;
  }

  .site-title .tagline {
    font-size: 0.8rem;
  }

  .site-title .description {
    display: none;
  }
}

```css
/* ============================= */
/* CONTACT FORM */
/* ============================= */

.contact-form {
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #555;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

.form-row textarea {
  resize: vertical;
}

.form-row-message {
  align-items: start;
}

.form-submit {
  margin-left: 136px;
  margin-top: 1.5rem;
}

/* Mobile responsiveness */
@media (max-width: 700px) {

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    margin-left: 0;
  }

}

