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

:root {
    --primary-green: #4a7856;
    --secondary-green: #5d9168;
    --gold: #d4af37;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --cream: #faf8f3;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Animated gradient background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg,
        #faf8f3 0%,
        #f0ebe3 25%,
        #e8f5e9 50%,
        #f0ebe3 75%,
        #faf8f3 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle grain texture */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    30% { transform: translate(3%, -15%); }
    50% { transform: translate(12%, 9%); }
    70% { transform: translate(9%, 4%); }
    90% { transform: translate(-1%, 7%); }
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

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

.logo-container {
    margin-bottom: 3rem;
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(74, 120, 86, 0.15));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.text-content {
    margin: 3rem 0;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--secondary-green);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.coming-soon {
    display: inline-block;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.label {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(74, 120, 86, 0.3);
    position: relative;
    overflow: hidden;
}

.label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.social-links {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.follow-text {
    font-size: 0.95rem;
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--primary-green);
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 1;
}

.social-icon.instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook::before {
    background: #1877f2;
}

.social-icon.youtube::before {
    background: #ff0000;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover svg {
    color: white;
    transform: scale(1.1);
}

.notify-section {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.notify-text {
    font-size: 1rem;
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.notify-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(74, 120, 86, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: white;
    color: var(--dark);
    transition: all 0.3s ease;
    outline: none;
}

.notify-form input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(74, 120, 86, 0.15);
}

.notify-form input::placeholder {
    color: rgba(74, 120, 86, 0.5);
}

.notify-form button {
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.notify-form button:hover {
    background: #c19b2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.notify-form button:active {
    transform: translateY(0);
}

.privacy-notice {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    opacity: 0.7;
    line-height: 1.5;
}

/* Floating decorative elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.float-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 120, 86, 0.08) 0%, transparent 70%);
    animation: floatAround 20s ease-in-out infinite;
}

.float-element:nth-child(2) {
    animation-delay: -5s;
    animation-duration: 25s;
}

.float-element:nth-child(3) {
    animation-delay: -10s;
    animation-duration: 30s;
}

.float-element:nth-child(4) {
    animation-delay: -15s;
    animation-duration: 22s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Success message */
.success-message {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(74, 120, 86, 0.1);
    border-radius: 10px;
    color: var(--primary-green);
    font-size: 0.95rem;
    animation: slideIn 0.3s ease-out;
}

.success-message.show {
    display: block;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .notify-form {
        flex-direction: column;
        align-items: stretch;
    }

    .notify-form input,
    .notify-form button {
        width: 100%;
        min-width: auto;
    }

    .float-element {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .logo {
        max-width: 160px;
    }

    .label {
        padding: 0.6rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
}
