    /* Import Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Open+Sans&display=swap');

    /* Color Palette */
    :root {
      --dark-navy: #22213F;
      --medium-gray: #56565B;
      --soft-peach: #E7AA8F;
      --warm-coral: #DA686C;
      --deep-wine: #743352;
	  --hightlight: #ffffff;
    }

    /* Global Styles */
    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      color: #56565B;
      background: white;
      line-height: 1.6;
      letter-spacing: 0.02em;
      overflow-x: hidden;
    }

    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
      color: #22213F;
      margin-bottom: 0.5rem;
      margin-top: 0;
      font-weight: 700;
    }

    h1 {
      font-size: 3rem;
      color: #743352;
      margin-bottom: 0.2rem;
      letter-spacing: 0.03em;
    }

    h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    /* Container for layout */
    .container {
      max-width: 70vw;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 95vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-wrapper {
        position: absolute;
        top: 32px;
        left: 32px;
        z-index: 10;
        width: 70px; /* Adjust size */
        height: 70px;
        display: flex;
        align-items: flex-start;
      }
      .logo-wrapper img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    
	.header-tint {
		position: absolute;
		width: 100%;
		height: 100%;
		display: block;
		background-color: rgba(0,0,0, .15);
	}

    .hero-slider {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      z-index: 1;
    }
    
    .hero-slider .slide {
      position: absolute;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease;
    }
    
    .hero-slider .slide.active {
      opacity: 1;
    }
    
    .hero-tint {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.281); /* Subtle dark tint */
      z-index: 2;
      pointer-events: none; /* Allows clicks to pass through */
    }
    
    .hero-content {
      position: relative;
      z-index: 3; /* Ensures text appears above tint and images */
    }    

    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(34, 33, 65, 0.3); /* adjust tint to preference */
      z-index: 1;
    }
    

    .hero h1 {
      font-size: 4rem;
    }

    .hero p {
      font-size: 1.25rem;
      color: #ffffff;
      margin-bottom: 2rem;
      /*max-width: 600px;*/
    }

    .btn-primary {
      background-color: #743352;
      color: white;
      border: none;
      padding: 0.75rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 30px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 6px rgba(233, 94, 106, 0.3);
      user-select: none;
    }
    
    .btn-primary:hover,
    .btn-primary:focus {
      background-color: #743352;
      outline: none;
    }

    /* Portfolio Section */
    .portfolio {
      padding: 4rem 1rem 6rem;
      background: white;
    }

    .portfolio h2 {
      text-align: center;
      margin-bottom: 3rem;
    }

    .gallery {
      column-count: 3;
      column-gap: 1.5rem;
    }

    @media (max-width: 900px) {
      .gallery {
        column-count: 2;
      }
    }
    @media (max-width: 600px) {
      .gallery {
        column-count: 1;
      }
      
      .hero h1 {
      font-size: 3rem;
      }
      
      .overlay {
      font-size: 0.2rem;
      }
    }
    
    @media (max-width: 480px) {
      
      .hero h1 {
      font-size: 2rem;
      }
      
      .overlay {
      font-size: 0.1rem;
      }
    }

    .gallery-item {
      margin-bottom: 1.5rem;
      position: relative;
      cursor: pointer;
      break-inside: avoid;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(34, 33, 65, 0.1);
      transition: transform 0.3s ease;
    }

    .gallery-item img {
      width: 100%;
      display: block;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-item:hover .overlay {
      opacity: 1;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 10px;
      width: 100%;
      height: 100%;
      background-color: rgba(241, 167, 138, 0.6);
      color: white;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      text-align: center;
      padding: 0 1rem;
    }

    /* Services Section */
    .services {
      background: #fff;
      padding: 4rem 1rem 6rem;
      text-align: center;
    }

    .services h2 {
      margin-bottom: 3rem;
      color: #22213F;
    }

    .service-list {
      display: flex;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
      max-width: 900px;
      margin: 0 auto;
    }

    .service {
      max-width: 240px;
      font-family: 'Playfair Display', serif;
      color: #22213F;
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .service-desc {
      font-family: 'Open Sans', sans-serif;
      font-weight: 400;
      font-size: 1rem;
      color: var(--medium-gray);
      line-height: 1.5;
      margin-bottom: 0;
    }

    /* Contact/Footer Section */
    footer {
      background-color: #22213F;
      color: #ffffff;
      padding: 3rem 1rem 4rem;
      text-align: center;
      font-family: 'Open Sans', sans-serif;
    }

    footer h2 {
      color: #ffffff;
      font-family: 'Playfair Display', serif;
      margin-bottom: 1.5rem;
      font-size: 2rem;
    }

    .contact-form {
      max-width: 500px;
      margin: 0 auto 2rem;
      text-align: left;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    label {
      display: block;
      margin-bottom: 0.4rem;
      font-weight: 600;
      color: #ffffff;
    }

    input[type="text"],
    input[type="email"],
    textarea {
      width: 100%;
      padding: 0.65rem 1rem;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      font-family: 'Open Sans', sans-serif;
      color: var(--deep-wine);
      background-color: #fce9ea;
      resize: vertical;
      transition: box-shadow 0.3s ease;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    textarea:focus {
      outline: none;
      box-shadow: 0 0 5px var(--warm-coral);
      background-color: #feecea;
    }

    textarea {
      min-height: 80px;
    }

    .btn-submit {
      display: inline-block;
      background-color: var(--warm-coral);
      color: white;
      border: none;
      padding: 0.75rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 30px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 6px rgba(233, 94, 106, 0.3);
      user-select: none;
      width: 100%;
      max-width: 240px;
      margin: 0 auto;
      display: block;
    }
    
    .btn-submit:hover,
    .btn-submit:focus {
      background-color: var(--deep-wine);
      outline: none;
    }

    /* Footer bottom text */
    .footer-bottom {
      margin-top: 1rem;
      font-size: 0.9rem;
      color: #ffffff;
      opacity: 0.8;
    }