* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e2f;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
header {
    background: #1a472a;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.logo i {
    font-size: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav ul li a:hover, nav ul li a.active {
    color: #ffd700;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 71, 42, 0.8), rgba(26, 71, 42, 0.8)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1200');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #ffd700;
    color: #1a472a;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

/* Features */
.features {
    padding: 60px 0;
    background: white;
}

.features h3, .news h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a472a;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 15px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
    color: #1a472a;
}

/* Countdown */
.news {
    padding: 60px 0;
    background: #e8f5e9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    text-align: center;
    background: #1a472a;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.under-construction {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin: 2rem 0;
}

.subscribe {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.subscribe input {
    padding: 12px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 1rem;
}

.subscribe button {
    background: #1a472a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe button:hover {
    background: #2d5a3f;
}

/* Page Content */
.page-content {
    padding: 60px 20px;
    background: white;
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.page-content h2 {
    color: #1a472a;
    margin-bottom: 2rem;
    text-align: center;
}

/* About Page */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text h3 {
    color: #1a472a;
    margin: 1.5rem 0 0.5rem;
}

.about-text ul {
    list-style: none;
    margin: 1rem 0;
}

.about-text ul li {
    margin: 0.5rem 0;
}

.about-text ul li i {
    color: #ffd700;
    margin-right: 10px;
}

.construction-badge {
    background: #ffd700;
    color: #1a472a;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    font-weight: bold;
}

.about-image {
    text-align: center;
    font-size: 8rem;
    color: #1a472a;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

/* Shop Page */
.construction-message {
    text-align: center;
    padding: 3rem;
}

.construction-message i {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.categories span {
    background: #e8f5e9;
    padding: 10px 20px;
    border-radius: 50px;
    color: #1a472a;
}

.categories span i {
    font-size: 1rem;
    margin-right: 5px;
}

/* Contacts Page */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.contact-item i {
    font-size: 2rem;
    color: #ffd700;
    width: 50px;
}

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

.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: inherit;
}

.contact-form button {
    width: fit-content;
}

/* Footer */
footer {
    background: #1a472a;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .about-section, .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
