/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    font-weight: 400;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.3s ease;
    font-family: Georgia, serif;
}

.btn-primary:hover {
    background: #333333;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #000000;
    padding: 14px 32px;
    border: 2px solid #000000;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: Georgia, serif;
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* NAVIGATION */
.navbar {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #666666;
}

/* HERO SECTION */
.hero {
    background: #f8f8f8;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    color: #000000;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.coming-soon-note {
    font-size: 0.95rem;
    color: #666666;
    font-style: italic;
    margin-top: 1.5rem;
}

/* CATEGORIES SECTION */
.categories {
    padding: 80px 0;
    background: white;
}

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

.category-card {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 400;
}

.category-card p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.category-list {
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}

.category-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
}

.category-list li:before {
    content: "·";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
}

/* FEATURES SECTION */
.features {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 400;
}

.feature p {
    color: #4a4a4a;
    line-height: 1.8;
}

/* ABOUT SECTION */
.about {
    padding: 80px 0;
    background: white;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* SHOP CTA */
.shop-cta {
    padding: 80px 0;
    background: #000000;
    color: white;
    text-align: center;
}

.shop-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 400;
}

.shop-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* FOOTER */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 1rem;
    filter: invert(1);
}

.footer-brand p {
    color: #999;
    font-size: 0.95rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 400;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 30px;
    }
}