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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: linear-gradient(135deg, #fef7ed 0%, #fef3c7 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ea580c;
}

.badge {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ea580c;
}

/* Hero Section */
.hero {
    padding: 64px 0 96px;
}

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

.hero-info {
    margin-bottom: 32px;
}

.age-badge {
    background: #fed7aa;
    color: #9a3412;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 16px;
}

.highlight {
    color: #ea580c;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
}

.features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

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

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

.btn-secondary:hover {
    background: #fef7ed;
}

.image-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 32px;
    transform: rotate(2deg);
    transition: transform 0.3s;
}

.image-container:hover {
    transform: rotate(0deg);
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    border: 1px solid #f3f4f6;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.5;
}

.included-section {
    background: #fef7ed;
    border-radius: 16px;
    padding: 32px;
}

.included-section h3 {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 24px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.included-item {
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 14px;
}

.included-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ea580c;
    border-radius: 50%;
    margin-right: 12px;
}

/* Gallery Section */
.gallery {
    padding: 64px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fef7ed 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gallery-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.gallery-content {
    padding: 24px;
}

.gallery-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.gallery-content p {
    color: #6b7280;
    line-height: 1.5;
}

/* Safety Section */
.safety {
    padding: 64px 0;
    background: white;
}

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

.safety-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    border: 1px solid #f3f4f6;
}

.safety-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.safety-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.safety-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.safety-card p {
    color: #6b7280;
    line-height: 1.5;
}

.safety-info {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 16px;
    padding: 32px;
}

.safety-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.safety-info ul {
    list-style: none;
}

.safety-info li {
    color: #374151;
    margin-bottom: 8px;
}

/* Call to Action */
.cta {
    padding: 64px 0;
    background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
}

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

.cta h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 24px;
}

.cta p {
    font-size: 20px;
    color: #fed7aa;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-white {
    background: white;
    color: #ea580c;
}

.btn-white:hover {
    background: #f9fafb;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #ea580c;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 48px 0;
}

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

.footer-section h3 {
    font-size: 24px;
    font-weight: bold;
    color: #f97316;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-note {
    font-size: 14px;
    color: #9ca3af;
}

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

.footer-section li {
    color: #d1d5db;
    margin-bottom: 8px;
}

.company-info {
    font-size: 14px;
}

.company-info a {
    color: #f97316;
    text-decoration: none;
}

.company-info a:hover {
    color: #fb923c;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .nav {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 640px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn {
        width: auto;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.gallery-item,
.safety-card {
    animation: fadeInUp 0.6s ease-out;
}

