/* ================================
   CSS Reset & Base Styles
   ================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ================================
   Custom Font Declarations
   ================================ */
@font-face {
    font-family: 'Maison';
    src: url("../fonts/DearMaison-Regular.woff") format('woff');
    font-display: swap;
}

/* ================================
   Typography & Brand Elements
   ================================ */
.brand-edmond,
.hero-edmond {
    font-family: 'Josefin Slab', serif;
    font-weight: 500;
}

.brand-may,
.hero-may {
    font-family: 'Maison', cursive;
    font-style: normal;
}

.brand-plus,
.hero-plus {
    font-family: 'Josefin Slab', serif;
    font-weight: 300;
}

/* ================================
   Layout Utilities
   ================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(204, 171, 134, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: hsl(204, 19%, 26%);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: #5a5a5a;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #b8956a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b8956a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 70px;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: clamp(1.5rem, 5cqi, 3.25rem);
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    color: hsl(204, 19%, 26%);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-plus {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #b8956a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b8956a;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 2.5rem 0;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #b8956a;
    color: white;
}

.cta-button.primary:hover {
    background: #a08458;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #b8956a;
    border-color: #b8956a;
}

.cta-button.secondary:hover {
    background: #b8956a;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ================================
   Section Styling
   ================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Josefin Slab', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: hsl(204, 19%, 26%);
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   Our Story Section
   ================================ */
.story {
    padding: 6rem 0;
    background: linear-gradient(135deg, #dad9d7 0%, #f5f2ef 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h3 {
    font-family: 'Josefin Slab', serif;
    font-size: 1.75rem;
    color: #8f7454;
    margin-block: 0 0.2rem;
}

.story-text p {
    margin: 0 0 2rem 0;
    color: #555;
    line-height: 1.7;
}

.story-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.value-item h4 {
    font-family: 'Josefin Slab', serif;
    font-size: 1.25rem;
    color: hsl(204, 19%, 26%);
    margin: 0 0 0.5rem 0;
}

.value-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* ================================
   Products Section
   ================================ */
.products {
    padding: 6rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #b8956a, #d4b896);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image.digital {
    background-image: url('../images/digital.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-image.handmade {
    background-image: url('../images/handmade.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-image.lifestyle {
    background-image: url('../images/lifestyle.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-placeholder {
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    filter: drop-shadow(0 0 7px rgb(0, 0, 0));
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-family: 'Josefin Slab', serif;
    font-size: 1.4rem;
    color: hsl(204, 19%, 26%);
    margin: 0 0 1rem 0;
}

.product-info p {
    margin: 0 0 1.5rem 0;
    color: #666;
    line-height: 1.6;
}

.product-link {
    color: #b8956a;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-link:hover {
    color: #a08458;
}

/* ================================
   Services Section
   ================================ */
.services {
    padding: 6rem 0;
    /* background: linear-gradient(135deg, #faf9f7 0%, #f5f2ef 100%); */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #ededed;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-family: 'Josefin Slab', serif;
    font-size: 1.75rem;
    font-weight: bold;
    color: hsl(204, 19%, 26%);
    margin: 0 0 1rem 0;
}

.service-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    text-align: start;
}

/* ================================
   Contact Section
   ================================ */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #dad9d7 0%, #f5f2ef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Josefin Slab', serif;
    font-size: 1.5rem;
    color: hsl(204, 19%, 26%);
    margin: 0 0 1rem 0;
}

.contact-info p {
    margin: 0 0 2rem 0;
    color: #666;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: #b8956a;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: #555;
}

/* ================================
   Contact Form
   ================================ */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: hsl(204, 19%, 26%);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8956a;
    box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: #b8956a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #a08458;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.3);
}

/* ================================
   Footer
   ================================ */
.footer {
    background: linear-gradient(135deg, hsl(204, 19%, 26%) 0%, #2a2a2a 100%);
    color: white;
    padding: 3rem 0 1.5rem 0;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    margin: 0;
    color: #cccccc;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* For now - you can add mobile menu later */
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-title {
        justify-content: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-button {
        min-width: 200px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .story,
    .products,
    .services,
    .contact {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        /* flex-direction: column; */
        gap: 0.5rem;
    }
    
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ================================
   Smooth Scrolling Enhancements
   ================================ */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    .value-item,
    .product-card,
    .service-card {
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .value-item:nth-child(1) { animation-delay: 0.1s; }
    .value-item:nth-child(2) { animation-delay: 0.2s; }
    .value-item:nth-child(3) { animation-delay: 0.3s; }
    
    .product-card:nth-child(1) { animation-delay: 0.1s; }
    .product-card:nth-child(2) { animation-delay: 0.2s; }
    .product-card:nth-child(3) { animation-delay: 0.3s; }
    
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 