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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2D3436;
    background: #FEFEFE;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #636E72;
}

/* Centered Content */
.centered-content {
    text-align: center;
}

.centered-content .content-text {
    text-align: left;
}

.centered-content .services-grid {
    text-align: left;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #9CAF88;
    color: white;
}

.btn-primary:hover {
    background: #8A9B76;
}

.btn-secondary {
    background: transparent;
    color: #9CAF88;
    border: 2px solid #9CAF88;
}

.btn-secondary:hover {
    background: #9CAF88;
    color: white;
}

/* Header */
.header {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid #E8EAED;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D3436;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F4E6 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.hero-content h1 {
    color: #2D3436;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #636E72;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image {
    max-width: 500px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-image .image-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    color: #636E72;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-header h2 {
    color: #2D3436;
    margin-bottom: 24px;
}

.section-header p {
    font-size: 1.25rem;
    color: #636E72;
}

/* Content Grid Sections */
.capsule-wardrobe, .denim-guide {
    padding: 100px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    color: #2D3436;
    margin-bottom: 24px;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: #636E72;
}

.feature-list li:before {
    content: '•';
    color: #9CAF88;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.content-image .image-placeholder {
    width: 100%;
    height: 350px;
    display: none;
}

.content-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.denim-features {
    margin-top: 32px;
}

.feature-item {
    margin-bottom: 24px;
}

.feature-item h4 {
    color: #2D3436;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #FAFBFC;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E8EAED;
}

.product-card .image-placeholder {
    width: 100%;
    height: 250px;
    display: none;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    color: #2D3436;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.product-info p {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #636E72;
}

.price-range {
    font-weight: 600;
    color: #9CAF88;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

/* Articles Section */
.articles {
    padding: 100px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.article-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #E8EAED;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.article-card .image-placeholder {
    width: 100%;
    height: 200px;
    background: #DDD6FE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #636E72;
    font-weight: 500;
}

.article-content {
    padding: 24px;
    flex-grow: 1;
}

.article-category {
    display: inline-block;
    background: #9CAF88;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.article-content h3 a {
    color: #2D3436;
    text-decoration: none;
    font-size: 1.25rem;
}

.article-content h3 a:hover {
    color: #9CAF88;
}

.article-content p {
    font-size: 1rem;
    margin-bottom: 16px;
}

.article-date {
    color: #9B9B9B;
    font-size: 0.875rem;
}

/* Membership Section */
.membership {
    padding: 100px 0;
    background: #9CAF88;
    color: white;
}

.membership-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.membership h2 {
    color: white;
    margin-bottom: 24px;
}

.membership p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-item {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
}

.service-item h3 {
    color: white;
    margin-bottom: 16px;
}

.service-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.membership-cta .btn-primary {
    background: white;
    color: #9CAF88;
}

.membership-cta .btn-primary:hover {
    background: #F8F9FA;
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #F8F9FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h4 {
    color: #2D3436;
    margin-bottom: 8px;
}

.contact-details a {
    color: #9CAF88;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    font-size: 1rem;
    margin: 0;
    color: #636E72;
}

/* Footer */
.footer {
    background: #2D3436;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand .brand-name {
    color: white;
}

.footer-tagline {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    flex: 2;
}

.nav-column h4 {
    color: white;
    margin-bottom: 16px;
}

.nav-column ul {
    list-style: none;
}

.nav-column li {
    margin-bottom: 8px;
}

.nav-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.nav-column a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        gap: 30px;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .capsule-wardrobe,
    .denim-guide,
    .products,
    .articles,
    .membership,
    .contacts {
        padding: 60px 0;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-brand {
        min-width: auto;
    }
    
    .footer-nav {
        gap: 40px;
    }
}