/* Custom Font */
@font-face {
    font-family: "MouncheraDemo";
    src: url("Fonts/MouncheraDemo-Yz6OO.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
  }
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Cormorant Garamond', serif;
  }
  
  body {
      font-family: 'Cormorant Garamond', serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
  }
  h1, h2, h3, h4, h5, h6 {
      font-weight: 400;
      letter-spacing: 1px;
  }
  
  h1 {
      font-size: 2.5rem;
  }
  
  h2 {
      font-size: 2rem;
  }
  
  p {
      margin-bottom: 1rem;
  }
  .container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
  }
  header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 0;
      background-color: rgba(249, 249, 249, 0.95);
      z-index: 1000;
      transition: all 0.3s ease;
      font-family: "MouncheraDemo", Arial, sans-serif !important;
  }
  
  header.scrolled {
      padding: 10px 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .logo {
      font-size: 1.8rem;
      font-weight: 300;
      letter-spacing: 1px;
      text-transform: lowercase;
      font-family: "MouncheraDemo", Arial, sans-serif !important;  /* Added !important to fix the font issue */
  }
  
  .logo a {
      color: #333;
      text-decoration: none;
      font-family: "MouncheraDemo", Arial, sans-serif !important;  /* Added this line to ensure the link inherits the font */
  }
  
  .nav-links {
      display: flex;
  }
  
  .nav-links li {
      list-style: none;
      margin-left: 30px;
      position: relative;
  }
  
  .nav-links a {
      color: #333;
      text-decoration: none;
      font-size: 1rem;
      letter-spacing: 1px;
      transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
      color: #888;
  }
  .preview-popup {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 300px;
      background-color: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 15px;
      border-radius: 5px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1001;
      margin-top: 20px;
  }
  
  .preview-popup img {
      width: 100%;
      height: auto;
      margin-bottom: 10px;
  }
  
  .preview-popup h3 {
      font-size: 1.2rem;
      margin-bottom: 5px;
  }
  
  .preview-popup p {
      font-size: 0.9rem;
  }
  
  .nav-links li:hover .preview-popup {
      opacity: 1;
      visibility: visible;
  }
  .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      position: relative;
  }
  
  .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.3);
  }
  
  .hero-content {
      position: relative;
      z-index: 1;
      color: #fff;
      max-width: 800px;
      padding: 0 20px;
  }
  
  .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      line-height: 1.2;
  }
  
  .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
  }
  .projects {
      padding: 100px 0;
  }
  
  .section-title {
      text-align: center;
      margin-bottom: 60px;
  }
  
  .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
  }
  
  .project-item {
      position: relative;
      overflow: hidden;
      border-radius: 5px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
  }
  
  .project-item:hover {
      transform: translateY(-10px);
  }
  
  .project-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
  }
  
  .project-details {
      padding: 20px;
      background-color: #fff;
  }
  
  .project-title {
      font-size: 1.3rem;
      margin-bottom: 5px;
  }
  
  .project-location {
      font-size: 1rem;
      color: #888;
      margin-bottom: 10px;
  }
  
  .project-description {
      font-size: 0.9rem;
      margin-bottom: 15px;
  }
  .about {
      padding: 100px 0;
      background-color: #fff;
  }
  
  .about-container {
      display: grid;
      grid-template-columns: 255px 1fr;
      grid-template-rows: auto auto;
      gap: 30px;
      align-items: start;
  }
  
  .about-image {
    width: 255px;
    height: 437px;
    object-fit: cover;
    border-radius: 5px;
}

  
  .about-main-content {
      grid-column: 2;
      grid-row: 1;
  }
  
  .about-main-content h2 {
      margin-bottom: 20px;
  }
  
  .about-services {
      grid-column: 2;
      grid-row: 2;
      margin-top: 20px;
  }
  
  .about-services h2 {
      margin-bottom: 20px;
  }
  .blog {
      padding: 100px 0;
  }
  
  .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
  }
  
  .blog-item {
      background-color: #fff;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
  }
  
  .blog-item:hover {
      transform: translateY(-10px);
  }
  
  .blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }
  
  .blog-details {
      padding: 20px;
  }
  
  .blog-date {
      font-size: 0.8rem;
      color: #888;
      margin-bottom: 10px;
  }
  
  .blog-title {
      font-size: 1.3rem;
      margin-bottom: 10px;
  }
  
  .blog-excerpt {
      font-size: 0.9rem;
      margin-bottom: 15px;
  }
  
  .read-more {
      display: inline-block;
      color: #333;
      text-decoration: none;
      font-size: 0.9rem;
      border-bottom: 1px solid #333;
      transition: all 0.3s ease;
  }
  
  .read-more:hover {
      color: #888;
      border-color: #888;
  }
  .contact {
      padding: 100px 0;
      background-color: #f9f9f9;
  }
  
  .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
  }
  
  .contact-info h3 {
      margin-bottom: 20px;
  }
  
  .contact-details {
      margin-bottom: 30px;
  }
  
  .contact-details p {
      margin-bottom: 10px;
  }
  
  .social-links a {
      display: inline-block;
      margin-right: 15px;
      color: #333;
      font-size: 1.2rem;
      transition: color 0.3s ease;
  }
  
  .social-links a:hover {
      color: #888;
  }
  
  .contact-form .form-group {
      margin-bottom: 20px;
  }
  
  .contact-form label {
      display: block;
      margin-bottom: 5px;
      font-size: 0.9rem;
  }
  
  .contact-form input,
  .contact-form textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
      background-color: #fff;
  }
  
  .contact-form textarea {
      height: 150px;
      resize: vertical;
  }
  
  .contact-form button {
      background-color: #333;
      color: #fff;
      border: none;
      padding: 12px 30px;
      font-size: 1rem;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
      background-color: #555;
  }
  footer {
    background-color: #f9f9f9;  /* This matches your site's background */
    color: #333;  /* Change text to dark since background is now light */
    padding: 50px 0;
    text-align: center;
}
  
  .footer-content {
      max-width: 600px;
      margin: 0 auto;
  }
  
  .footer-logo {
      font-size: 1.5rem;
      margin-bottom: 20px;
  }
  
  .footer-links {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
  }
  
  .footer-links a {
      color: #584738;
      text-decoration: none;
      margin: 0 15px;
      font-size: 0.9rem;
      transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
      color: #ddd;
  }
  
  .footer-social {
      margin-bottom: 20px;
  }
  
  .footer-social a {
      color: #584738;
      margin: 0 10px;
      font-size: 1.2rem;
      transition: color 0.3s ease;
  }
  
  .footer-social a:hover {
      color: #ddd;
  }
  
  .copyright {
      font-size: 0.8rem;
      color: #aaa;
  }
  .dark-mode {
      background-color: #1a1a1a;
      color: #f9f9f9;
  }
  
  .dark-mode header {
      background-color: rgba(26, 26, 26, 0.95);
  }
  
  .dark-mode .logo a, 
  .dark-mode .nav-links a {
      color: #f9f9f9;
  }
  
  .dark-mode .project-details,
  .dark-mode .blog-item,
  .dark-mode .preview-popup {
      background-color: #222;
      color: #f9f9f9;
  }
  
  .dark-mode .contact-form input,
  .dark-mode .contact-form textarea {
      background-color: #333;
      border-color: #444;
      color: #f9f9f9;
  }
  
  .dark-mode .contact-form button {
      background-color: #f9f9f9;
      color: #1a1a1a;
  }
  
  .dark-mode .contact-form button:hover {
      background-color: #ddd;
  }
  @media (max-width: 991px) {
      .about-container {
          grid-template-columns: 1fr;
      }
  
      .contact-container {
          grid-template-columns: 1fr;
      }
  }
  
  @media (max-width: 768px) {
      .header-container {
          flex-direction: column;
      }
  
      .logo {
          margin-bottom: 15px;
      }
  
      .nav-links {
          width: 100%;
          justify-content: space-between;
      }
  
      .nav-links li {
          margin-left: 0;
      }
  
      .hero-content h1 {
          font-size: 2.5rem;
      }
  
      .preview-popup {
          width: 200px;
      }
  
      .projects-grid, .blog-grid {
          grid-template-columns: 1fr;
      }
  }
.project-header {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    position: relative;
    margin-top: 80px;
}

.project-content {
    padding: 60px 0;
}

.project-description {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.project-description h2 {
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.project-details-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 5px;
    max-width: 800px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.detail-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.back-button {
    display: inline-block;
    margin: 30px 0 0;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    color: #888;
}
.project-item {
    cursor: pointer;
}
@media (max-width: 768px) {
    .gallery-grid, .details-grid {
        grid-template-columns: 1fr;
    }
}
.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-link:hover .project-item {
    transform: translateY(-10px);
}
/* Shop Grid Clean Styles */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.shop-item {
    position: relative;
    transition: transform 0.3s ease;
}

.shop-item:hover {
    transform: translateY(-5px);
}

.shop-image {
    width: 100%;
    aspect-ratio: 1/1; /* Square ratio */
    object-fit: cover;
    object-position: center;
}

.shop-details {
    padding: 10px 0;
    background: transparent;
}

.shop-title {
    font-size: 0.9rem;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.shop-category {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0;
}

/* Style the shop item links */
.shop-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Remove any box-shadow */
.shop-item, .shop-image {
    box-shadow: none;
    border-radius: 0;
}
/* Additional Flush Layout Styles */
.shop-section {
    padding: 80px 0;
    background-color: transparent;
}

.shop-section .container {
    max-width: 1400px; /* Match your site's container width */
}

/* Remove any hover indicators */
.shop-details::after {
    display: none;
}

/* Create a consistent text style */
.shop-title, .shop-category {
    text-align: center;
}

/* Make sure images don't have any inherit borders */
img.shop-image {
    border: none;
    background: transparent;
}

/* On dark mode, keep text visible */
.dark-mode .shop-details {
    background: transparent;
}

.dark-mode .shop-category {
    color: #aaa;
}
.image-gallery {
    display: flex;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .image-item {
    flex: 1;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1.3; /* Slightly taller than wide for your interior design images */
    display: block;
  }
  
  .image-credit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 10px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .image-item:hover .image-credit {
    opacity: 1;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .image-gallery {
      flex-direction: column;
    }
    
    .image-item {
      width: 100%;
    }
  }
  .image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .image-item {
    border: 1px solid #e0e0e0;
  }
  .blog-image {
    width: 100%;
    margin: 30px 0;
  }
  
  .blog-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    border-radius: 4px; /* Optional: adds slightly rounded corners */
  }
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    width: 100%;
    background-color: transparent;
  }
  
  .shop-item {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    transition: transform 0.3s ease;
    text-decoration: none;
  }
  
  .shop-item:hover {
    transform: translateY(-5px);
  }
  
  .shop-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
  }
  
  .product-source {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(120, 129, 118, 0.85); /* Your requested color #788176 with transparency */
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .shop-item:hover .product-source {
    opacity: 1;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .shop-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .shop-grid {
      grid-template-columns: 1fr;
    }
  }
/* ================================
   ITEM LIST FOR COASTAL BLOG SECTION
   ================================ */

/* Shop The Colors Section */
.shop-colors-section {
    padding: 80px 0;
    background-color: transparent;
}

.shop-colors-section .section-title h2 {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 50px;
    font-weight: 300;
}

/* Colors Grid Layout - Fixed for proper grid */
.colors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Color Items - Square format */
.color-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1; /* Makes it square */
    overflow: hidden;
    border-radius: 8px;
}

.color-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.color-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: none;
    background: transparent;
    display: block;
}

/* Hover Overlay */
.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 15px;
}

.color-title {
    color: white;
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Show overlay on hover */
.color-item:hover .color-overlay {
    opacity: 1;
}

/* Dark mode support */
.dark-mode .color-overlay {
    background-color: rgba(255, 255, 255, 0.9);
}

.dark-mode .color-title {
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .colors-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
    }
}

@media (max-width: 768px) {
    .colors-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 15px;
    }
    
    .color-title {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .colors-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns even on small phones */
        gap: 10px;
    }
    
    .color-title {
        font-size: 0.6rem;
    }
}
.enhanced-color-palette {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.palette-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
}

.color-swatches {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.color-swatch {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.color-swatch:hover {
    transform: translateY(-5px);
}

.color-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease;
}

.color-swatch:hover .color-circle {
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.color-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.color-name {
    font-weight: 500;
    font-size: 1rem;
}

.color-hex {
    font-size: 0.8rem;
    color: #666;
    font-family: monospace;
}

.enhanced-moodboard {
    margin: 60px 0;
    text-align: center;
}

.moodboard-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.moodboard-frame {
    display: inline-block;
    margin-bottom: 20px;
}

.moodboard-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.moodboard-caption {
    max-width: 500px;
    margin: 0 auto;
    font-style: italic;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .moodboard-image {
        width: 300px;
        height: 300px;
    }
}
.blog-post-title {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 300;
}

.title-subtitle {
    display: block;
    font-style: italic;
    font-size: 0.8em;
    margin-top: 10px;
    opacity: 0.8;
}

/* About Section Responsive Updates */
@media (max-width: 991px) {
    .about-image {
        width: 100%;
        height: auto;
        max-width: 400px;
        margin: 0 auto;
        grid-row: 1;
    }
    
    .about-main-content {
        grid-column: 1;
        grid-row: 2;
    }
    
    .about-services {
        grid-column: 1;
        grid-row: 3;
        margin-top: 0;
    }
}
/* Before and After Images Styling */
.before-after-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.before-after-image {
    text-align: center;
    flex: 0 0 auto;
}

.comparison-image {
    width: 472px;
    height: 392px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 15px;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 0;
    width: 472px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .before-after-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .comparison-image {
        width: 100%;
        max-width: 472px;
        height: auto;
        aspect-ratio: 472/392;
    }
    
    .image-caption {
        width: 100%;
        max-width: 472px;
    }
}
