@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
      --navy: #0f172a;
      --amber: #f59e0b;
      --off-white: #faf9f7;
      --light-gray: #e8e6e1;
      --dark-gray: #4a4a4a;
      --serif: 'Lora', serif;
      --sans: 'Source Sans 3', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--sans);
      color: var(--navy);
      background-color: var(--off-white);
      line-height: 1.6;
    }

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

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

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

    .brand {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      letter-spacing: -0.5px;
    }

    nav {
      display: flex;
      gap: 2.5rem;
    }

    nav a {
      font-family: var(--sans);
      font-size: 0.95rem;
      color: var(--navy);
      text-decoration: none;
      transition: color 0.3s ease;
      position: relative;
      padding: 0.5rem 1rem;
    }

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

    nav a.active {
      background-color: var(--navy);
      color: var(--off-white);
      border-radius: 20px;
    }

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

    section {
      padding: 4rem 2rem;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Hero Split Section */
    .hero-split {
      padding: 5rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-text h1 {
      font-family: var(--serif);
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1rem;
      line-height: 1.1;
    }

    .hero-text .subheading {
      font-family: var(--serif);
      font-size: 1.5rem;
      color: var(--dark-gray);
      margin-bottom: 2rem;
      font-weight: 400;
    }

    .hero-text p {
      font-size: 1.05rem;
      color: var(--dark-gray);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .hero-image-container {
      position: relative;
      height: 500px;
      overflow: hidden;
      border-radius: 4px;
    }

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

    .cta-button {
      display: inline-block;
      background-color: var(--navy);
      color: var(--off-white);
      padding: 1rem 2rem;
      text-decoration: none;
      border-radius: 3px;
      font-weight: 600;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-family: var(--sans);
      font-size: 1rem;
    }

    .cta-button:hover {
      background-color: var(--amber);
      color: var(--navy);
    }

    /* Concept Section */
    .concept-section {
      background-color: var(--navy);
      color: var(--off-white);
    }

    .concept-section h2 {
      font-family: var(--serif);
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
    }

    .concept-section .subheading {
      font-family: var(--serif);
      font-size: 1.3rem;
      margin-bottom: 2rem;
      color: var(--amber);
      font-weight: 400;
    }

    .concept-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 2rem;
    }

    .concept-card {
      background-color: rgba(255, 255, 255, 0.05);
      padding: 2rem;
      border-left: 3px solid var(--amber);
    }

    .concept-card h3 {
      font-family: var(--serif);
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--amber);
    }

    .concept-card p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--off-white);
    }

    /* Atmosphere Section */
    .atmosphere-section {
      background-color: var(--off-white);
    }

    .atmosphere-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .atmosphere-image {
      height: 450px;
      overflow: hidden;
      border-radius: 4px;
    }

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

    .atmosphere-text h2 {
      font-family: var(--serif);
      font-size: 2.5rem;
      color: var(--navy);
      margin-bottom: 0.5rem;
      font-weight: 700;
    }

    .atmosphere-text .subheading {
      font-family: var(--serif);
      font-size: 1.3rem;
      color: var(--amber);
      margin-bottom: 2rem;
      font-weight: 400;
    }

    .atmosphere-text p {
      font-size: 1.05rem;
      color: var(--dark-gray);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    /* Dress Code Section */
    .dress-code-section {
      background-color: var(--light-gray);
    }

    .dress-code-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .dress-code-text h2 {
      font-family: var(--serif);
      font-size: 2.5rem;
      color: var(--navy);
      margin-bottom: 0.5rem;
      font-weight: 700;
    }

    .dress-code-text .subheading {
      font-family: var(--serif);
      font-size: 1.3rem;
      color: var(--amber);
      margin-bottom: 2rem;
      font-weight: 400;
    }

    .dress-code-text p {
      font-size: 1.05rem;
      color: var(--dark-gray);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .dress-code-list {
      list-style: none;
      margin-top: 1.5rem;
    }

    .dress-code-list li {
      padding: 0.8rem 0;
      padding-left: 2rem;
      position: relative;
      font-size: 1rem;
      color: var(--dark-gray);
    }

    .dress-code-list li:before {
      content: '●';
      position: absolute;
      left: 0;
      color: var(--amber);
      font-weight: bold;
    }

    .dress-code-image {
      height: 450px;
      overflow: hidden;
      border-radius: 4px;
    }

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

    /* Closing Section */
    .closing-section {
      background-color: var(--navy);
      color: var(--off-white);
      text-align: center;
      padding: 6rem 2rem;
    }

    .closing-section h2 {
      font-family: var(--serif);
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
    }

    .closing-section .subheading {
      font-family: var(--serif);
      font-size: 1.3rem;
      margin-bottom: 2rem;
      color: var(--amber);
      font-weight: 400;
    }

    .closing-section p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      line-height: 1.8;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Footer */
    footer {
      background-color: var(--navy);
      color: var(--off-white);
      padding: 3rem 2rem 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .footer-brand h3 {
      font-family: var(--serif);
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
    }

    .footer-brand p {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    .footer-column h4 {
      font-family: var(--serif);
      font-size: 1.1rem;
      margin-bottom: 1rem;
      font-weight: 600;
      color: var(--amber);
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }

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

    .footer-contact {
      font-size: 0.95rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.8);
    }

    .footer-contact strong {
      color: var(--off-white);
      display: block;
      margin-top: 1rem;
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-split {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
      }

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

      .hero-image-container {
        height: 350px;
      }

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

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

      .atmosphere-image {
        height: 350px;
      }

      .dress-code-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .dress-code-image {
        height: 350px;
      }

      nav {
        gap: 1.5rem;
      }

      nav a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
      }

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

      section {
        padding: 3rem 1.5rem;
      }

      .concept-section h2,
      .atmosphere-text h2,
      .dress-code-text h2,
      .closing-section h2 {
        font-size: 2rem;
      }

      .hero-text .subheading,
      .concept-section .subheading,
      .atmosphere-text .subheading,
      .dress-code-text .subheading,
      .closing-section .subheading {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 480px) {
      .brand {
        font-size: 1.2rem;
      }

      nav {
        gap: 1rem;
        flex-wrap: wrap;
      }

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

      .hero-text .subheading {
        font-size: 1.1rem;
      }

      .concept-section h2,
      .atmosphere-text h2,
      .dress-code-text h2,
      .closing-section h2 {
        font-size: 1.8rem;
      }

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

      section {
        padding: 2rem 1rem;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
