:root {
  --dark: linear-gradient(90deg,rgba(36, 43, 49, 1) 0%, rgba(42, 47, 54, 1) 74%, rgba(47, 54, 63, 1) 100%);
  --light: #f7f0e8;
  --beige: #e0cdba;
  --page-bg: #fffff0;
  --beige-gradient: linear-gradient(180deg, #e0cdba 0%, #f7f0e8 60%, #e0cdba 100%);
  --footer-bg: #232220;
  --hero-bg: #232220;
  --font-inter: 'Inter', Arial, Helvetica, sans-serif;
  --font-roslindale: 'Roslindale', sans-serif;

}
@import url('https://fonts.cdnfonts.com/css/roslindale');

@font-face {
  font-family: 'Inter';
  src: url('https://ext.same-assets.com/4089395072/623476531.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('https://ext.same-assets.com/4089395072/2081666296.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roslindale';
  src: url('https://ext.same-assets.com/4089395072/1502380293.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.cdnfonts.com/css/roslindale');

@font-face {
  font-family: 'Inter';
  src: url('https://ext.same-assets.com/4089395072/623476531.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('https://ext.same-assets.com/4089395072/2081666296.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roslindale';
  src: url('https://ext.same-assets.com/4089395072/1502380293.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

:root {
    --primary-dark: #1d1c1c;
    --primary-light: #e4ceba;
    --secondary-light: #f4ece4;
    --text-dark: #1d1c1c;
    --text-light: #898075;
    --accent: #a1a09c;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--page-bg);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6,
header, footer {
  font-family: 'Roslindale', serif !important;
}

p {
  font-family: Arial, sans-serif !important;
}

header, footer {
  font-family: 'Roslindale', serif !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-dark);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-btn {
    border: 1px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgb(92, 92, 92);
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--page-bg);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 25%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.1;
    color: var(--text-dark);
    max-width: 800px;
}

.hero-title .line-1,
.hero-title .line-2,
.hero-title .line-3,
.hero-title .line-4 {
    display: block;
    opacity: 0;
    transform: translateY(100px);
}

.highlight {
    background: var(--primary-dark);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
    font-style: normal;
}

.text-light {
    color: black;
}

/* Founder Section */
.founder-section {
    padding: 8rem 0;
    background: var(--page-bg);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.founder-dot {
    position: absolute;
    top: 2rem;
    left: -1rem;
    width: 12px;
    height: 12px;
    background: var(--primary-dark);
    border-radius: 50%;
}

.founder-title {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.founder-description p {
    font-size: 1.1rem;
    color: hsl(0, 0%, 0%);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Who We Are Section */
.who-we-are {
    padding: 8rem 0;
    background: var(--primary-dark);
    color: white;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
}

.card {
    padding: 3rem 2.5rem;
    border-radius: 30px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-dark {
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.card-light {
    background: var(--page-bg);
    color: var(--text-dark);
}

.card-dot {
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.card-dark .card-dot {
    background: white;
}

.card-light .card-dot {
    background: var(--primary-dark);
}

.card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    line-height: 1.3;
}

.card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Awards Section */
.awards-section {
    padding: 6rem 0;
    background: var(--page-bg);
}

.awards-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.awards-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    max-width: 400px;
}

.awards-text .highlight {
    background: var(--primary-dark);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.awards-images {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.awards-images img {
    height: 200px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.awards-images img:hover {
    transform: scale(1.1);
}

/* Store Locations Section */
.stores-section {
    padding: 6rem 0;
    background: var(--page-bg);
}

.stores-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.stores-section .highlight {
    background: var(--primary-dark);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    justify-items: center;
}

.stores-grid img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.stores-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background: var(--page-bg);
}

.blog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.blog-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.view-all-btn,
.read-more-btn,
.say-hello-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-dark);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover,
.read-more-btn:hover,
.say-hello-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(29, 28, 28, 0.3);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: white;
    color: var(--primary-dark);
    border-radius: 50%;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-5px);
}

.blog-article img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
}

.article-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.article-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 8px !important;
    color: white !important;
    letter-spacing: 1px;
}

.info-label {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 1px;
}

.info-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.info-item a:hover {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 5rem);
    }

    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .awards-content {
        flex-direction: column;
        text-align: center;
    }

    .blog-content {
        grid-template-columns: 1fr;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        margin-top: 8rem;
        margin-bottom: 8rem;
    }

    .nav {
        display: none;
    }

    .hero {
        height: 80vh;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }

    .section-title {
        font-size: 3rem;
    }

    .founder-title {
        font-size: 2.5rem;
    }

    .blog-text h2 {
        font-size: 2.5rem;
    }

    .stores-section h2,
    .awards-text h2 {
        font-size: 2.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: 1fr 1fr;
    }
}

/* Loading animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s ease;
}




/* Add this to your about.css file */

/* Image Lightbox Modal Styles */
.image-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lightbox-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
  background: #333;
  transform: scale(1.1);
}

.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  object-fit: contain;
}

.lightbox-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(0.8);
}

.lightbox-container:hover .lightbox-prev,
.lightbox-container:hover .lightbox-next {
  opacity: 1;
  transform: scale(1);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.lightbox-prev {
  left: -25px;
}

.lightbox-next {
  right: -25px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .lightbox-container {
    max-width: 95vw;
    max-height: 95vh;
    padding: 15px;
  }
  
  .lightbox-close {
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
  }
  
  .lightbox-image {
    max-height: 75vh;
  }
  
  .lightbox-controls {
    padding: 0 10px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    opacity: 0.8;
    transform: scale(1);
  }
  
  .lightbox-prev {
    left: -20px;
  }
  
  .lightbox-next {
    right: -20px;
  }
  
  /* Always show navigation on mobile */
  .lightbox-prev,
  .lightbox-next {
    opacity: 0.7 !important;
  }
  
  .lightbox-prev:active,
  .lightbox-next:active {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.9);
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .lightbox-container {
    max-width: 98vw;
    max-height: 98vh;
    padding: 10px;
    border-radius: 10px;
  }
  
  .lightbox-image {
    max-height: 70vh;
    border-radius: 8px;
  }
  
  .lightbox-close {
    width: 35px;
    height: 35px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 35px;
    height: 35px;
  }
}

/* Add visual indicator that images are clickable */
.awards-images img {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.awards-images img::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.awards-images img::before {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

@media (min-width: 769px) {
  .awards-images img:hover::after,
  .awards-images img:hover::before {
    opacity: 1;
  }
  
  .awards-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
}

/* Mobile tap indicator */
@media (max-width: 768px) {
  .awards-images img::after {
    opacity: 0.3;
  }
  
  .awards-images img::before {
    opacity: 0.8;
  }
}

/* Accessibility improvements */
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* Smooth loading state */
.lightbox-image {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-image[src=""] {
  opacity: 0;
}