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

:root {
    --primary-color: #c97855;
    --secondary-color: #a85c3d;
    --accent-color: #e8b878;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #4a3428;
    --text-light: #8b6f5c;
    --white: #ffffff;
    --peach-gradient: linear-gradient(180deg, #b85c3f 0%, #c97855 25%, #d88d67 50%, #e8b878 100%);
    --gradient-1: linear-gradient(135deg, #c97855 0%, #e8b878 100%);
    --gradient-2: linear-gradient(135deg, #e8b878 0%, #c97855 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--peach-gradient);
    overflow: hidden;
    padding: 80px 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #f5e6d3;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: fadeInDown 0.8s ease-out;
}

.badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 400;
    color: #f5e6d3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #f5e6d3;
    font-weight: 400;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Coming Soon Badge */
.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pulse {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.coming-soon-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Notify Section */
.notify-section {
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.notify-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.notify-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.email-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(168, 92, 61, 0.2);
}

.notify-button {
    padding: 15px 40px;
    background: var(--secondary-color);
    color: #f5e6d3;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #8f4d33;
}

.privacy-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.puzzle-piece {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    background: var(--gradient-1);
    border-radius: 20px;
}

.piece-1 {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.piece-2 {
    top: 60%;
    left: 10%;
    animation: float 7s ease-in-out infinite 1s;
}

.piece-3 {
    top: 20%;
    right: 8%;
    animation: float 8s ease-in-out infinite 2s;
}

.piece-4 {
    bottom: 15%;
    right: 5%;
    animation: float 9s ease-in-out infinite 1.5s;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: var(--white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 120, 85, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(201, 120, 85, 0.3);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5e6d3 0%, #fdf3e7 100%);
}

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

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    padding: 25px 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    font-size: 2rem;
}

.about-highlight p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-brand h3 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(201, 120, 85, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--white);
}

.footer-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    width: 100%;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
}

.footer-coming-soon {
    color: var(--accent-color) !important;
    font-weight: 600;
    font-size: 1.1rem;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .features {
        padding: 60px 20px;
    }
    
    .about {
        padding: 60px 20px;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .email-input {
        width: 100%;
    }
    
    .notify-button {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
