/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 
                 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    line-height: 1.6;
    color: #333333;
    background-color: #F9F6F1;
    margin: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../image/WebsiiteBG.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 40px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(0px);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo-container {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.logo-image {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    object-fit: cover;
    background: white;
    padding: 8px;
}

/* Typography */
.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 32px;
    line-height: 1.5;
    max-width: 540px;
}

/* Subscription Form */
.subscription-container {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
}

.subscription-form {
    display: flex;
    gap: 0;
    background: #4a4a4a;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.email-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-button {
    padding: 16px 40px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.subscribe-button:hover {
    background: #f5f5f5;
    transform: scale(1.02);
}

.subscribe-button:active {
    transform: scale(0.98);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 20px;
    text-align: center;
    z-index: 100;
}

.footer p {
    color: #000000;
    font-size: 0.875rem;
    margin-bottom: 8px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .logo-image {
        width: 100px;
        height: 100px;
    }
    
    .subscription-form {
        flex-direction: column;
        gap: 8px;
        border-radius: 16px;
    }
    
    .email-input,
    .subscribe-button {
        border-radius: 12px;
    }
    
    .hero-section {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}
