@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");

:root {
      --dusty-rose: #be185d;
      --cream: #fffbeb;
      --dark-brown: #451a03;
      --light-gray: #f5f5f5;
      --border-color: #e0e0e0;
    }

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

    html, body {
      font-family: 'Raleway', sans-serif;
      color: var(--dark-brown);
      background-color: var(--cream);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Header & Navigation */
    header {
      background-color: var(--cream);
      border-bottom: 1px solid var(--border-color);
      padding: 2rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-cluster {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .brand-name {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--dark-brown);
      letter-spacing: 0.05em;
    }

    .brand-tagline {
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--dusty-rose);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    nav {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    nav a {
      text-decoration: none;
      color: var(--dark-brown);
      font-weight: 400;
      font-size: 0.95rem;
      transition: color 0.3s ease;
      border-bottom: 2px solid transparent;
      padding-bottom: 0.25rem;
    }

    nav a:hover {
      color: var(--dusty-rose);
    }

    nav a.active {
      color: var(--dusty-rose);
      border-bottom-color: var(--dusty-rose);
    }

    /* Main Content */
    main {
      max-width: 100%;
    }

    section {
      padding: 4rem 2rem;
    }

    .section-narrow {
      max-width: 700px;
      margin: 0 auto;
    }

    .section-wide {
      padding-left: 0;
      padding-right: 0;
    }

    h1, h2 {
      font-weight: 700;
      color: var(--dark-brown);
      margin-bottom: 1rem;
    }

    h1 {
      font-size: 3rem;
      line-height: 1.2;
    }

    h2 {
      font-size: 2.2rem;
      line-height: 1.3;
    }

    h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark-brown);
      margin-bottom: 0.75rem;
      margin-top: 1.5rem;
    }

    p {
      font-size: 1rem;
      margin-bottom: 1.25rem;
      color: var(--dark-brown);
    }

    .subheading {
      font-size: 1.25rem;
      color: var(--dusty-rose);
      font-weight: 400;
      margin-bottom: 2rem;
    }

    /* Split Hero Section */
    #split-hero {
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
      align-items: stretch;
    }

    .hero-text {
      background-color: var(--cream);
      padding: 4rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-text h1 {
      margin-bottom: 1rem;
    }

    .hero-image {
      position: relative;
      overflow: hidden;
      height: 600px;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(190, 24, 93, 0.1) 0%, rgba(69, 26, 3, 0.05) 100%);
      pointer-events: none;
    }

    /* Feature Sections */
    .feature-section {
      background-color: var(--light-gray);
      padding: 4rem 2rem;
    }

    .feature-section.light {
      background-color: var(--cream);
    }

    .feature-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .feature-text {
      padding: 0 1rem;
    }

    .feature-image {
      position: relative;
      height: 400px;
      overflow: hidden;
      border: 1px solid var(--border-color);
    }

    .feature-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Winter Prep Section */
    #talvi-valmistautuminen {
      background-color: var(--light-gray);
    }

    .prep-list {
      max-width: 700px;
      margin: 2rem auto;
    }

    .prep-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--border-color);
    }

    .prep-item:last-child {
      border-bottom: none;
    }

    .prep-icon {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--dusty-rose);
      line-height: 1;
    }

    .prep-text h3 {
      margin-top: 0;
    }

    /* Casino Teaser */
    #kasino-teaser {
      background: linear-gradient(135deg, var(--dark-brown) 0%, #5a2d0c 100%);
      color: var(--cream);
      padding: 4rem 2rem;
      text-align: center;
    }

    #kasino-teaser h2 {
      color: var(--cream);
    }

    #kasino-teaser .subheading {
      color: #e8c4a0;
    }

    #kasino-teaser p {
      color: var(--cream);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button {
      display: inline-block;
      background-color: var(--dusty-rose);
      color: var(--cream);
      padding: 0.75rem 2rem;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      border: 1px solid var(--dusty-rose);
      transition: all 0.3s ease;
      margin-top: 1rem;
      cursor: pointer;
      border-radius: 0;
    }

    .cta-button:hover {
      background-color: transparent;
      color: var(--dusty-rose);
    }

    #kasino-teaser .cta-button {
      background-color: var(--cream);
      color: var(--dark-brown);
      border-color: var(--cream);
    }

    #kasino-teaser .cta-button:hover {
      background-color: transparent;
      color: var(--cream);
    }

    /* Footer */
    footer {
      background-color: var(--dark-brown);
      color: var(--cream);
      padding: 3rem 2rem 1.5rem;
      margin-top: 4rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-column h3 {
      color: var(--cream);
      font-size: 1rem;
      margin-bottom: 1rem;
      margin-top: 0;
    }

    .footer-column p {
      color: var(--cream);
      font-size: 0.9rem;
      margin-bottom: 0.75rem;
    }

    .footer-column a {
      color: #e8c4a0;
      text-decoration: none;
      font-size: 0.9rem;
      display: block;
      margin-bottom: 0.5rem;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: var(--dusty-rose);
    }

    .footer-bottom {
      border-top: 1px solid rgba(232, 196, 160, 0.2);
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.85rem;
      color: #e8c4a0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      #split-hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-image {
        height: 300px;
      }

      .hero-text {
        padding: 2.5rem 1.5rem;
      }

      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.6rem;
      }

      .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .feature-image {
        height: 300px;
      }

      nav {
        gap: 1.5rem;
        font-size: 0.85rem;
      }

      .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }

      section {
        padding: 2.5rem 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .header-container {
        flex-direction: column;
        gap: 1rem;
      }

      nav {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
      }

      h1 {
        font-size: 1.5rem;
      }

      h2 {
        font-size: 1.3rem;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      .prep-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
