/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: hsl(72, 25%, 25%);
    background-color: hsl(0, 0%, 100%);
}

/* Color Variables based on design system */
:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222.2, 84%, 4.9%);
    --primary: hsl(72, 25%, 45%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(72, 35%, 75%);
    --secondary-foreground: hsl(72, 25%, 25%);
    --olive-light: hsl(72, 35%, 75%);
    --olive-medium: hsl(72, 25%, 45%);
    --olive-dark: hsl(72, 25%, 25%);
    --olive-bg: hsl(72, 35%, 85%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('src/assets/hero-fashion.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-button {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: hsl(72, 25%, 40%);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--olive-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--olive-dark);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: hsl(72, 25%, 25%, 0.8);
    max-width: 48rem;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: white;
    border-radius: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 0.75rem;
}

.service-description {
    color: hsl(72, 25%, 25%, 0.7);
    line-height: 1.6;
}

/* Client Stories Section */
.client-stories-section {
    padding: 5rem 0;
    background-color: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.story-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0.5rem;
}

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

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--olive-dark);
}

.story-description {
    color: hsl(72, 25%, 25%, 0.7);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--olive-bg);
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.125rem;
    color: hsl(72, 25%, 25%, 0.8);
}

.contact-form-card {
    background-color: white;
    border-radius: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    color: var(--olive-dark);
    font-weight: 500;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--olive-light);
    border-radius: 0.375rem;
    background-color: white;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--olive-medium);
    box-shadow: 0 0 0 2px hsla(72, 25%, 45%, 0.2);
}

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

.form-button {
    width: 100%;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-button:hover {
    background-color: hsl(72, 25%, 40%);
}

.collection-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.collection-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.collection-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--olive-dark);
}

.collection-description {
    font-size: 1.125rem;
    color: hsl(72, 25%, 25%, 0.8);
}

.collection-button {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: start;
}

.collection-button:hover {
    background-color: hsl(72, 25%, 40%);
}

.collection-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0.5rem;
}

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

/* Footer Section */
.footer-section {
    background-color: var(--olive-dark);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list li {
    color: hsla(0, 0%, 100%, 0.8);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-info p {
    color: hsla(0, 0%, 100%, 0.8);
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: hsla(0, 0%, 100%, 0.6);
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .collection-title {
        font-size: 1.5rem;
    }
}