/* CSS Reset and Variables */
:root {
    --primary-color: #2D583F;
    /* Dark green from nature */
    --accent-color: #F4C430;
    /* Golden/yellowish tone closer to kiwi heart or branding */
    --text-color: #333333;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background: url('background.jpg') no-repeat center center/cover;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Optional overlay to ensure text readability against any background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 0;
}

/* Glassmorphism Container */
.glass-container {
    position: relative;
    z-index: 1;
    background: var(--glass-bg);
    /* backdrop-filter: blur(12px); Removed per user request */
    /* -webkit-backdrop-filter: blur(12px); Removed per user request */
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    animation: fadeIn 1s ease-out;
}

/* Header & Logo */
.brand-header {
    margin-bottom: 2.5rem;
}

.logo {
    width: 140px;
    height: auto;
    border-radius: 50%;
    /* If logo is circular */
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Social Links Buttons */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Specific Brand Colors on Hover */
.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram:hover {
    color: #E1306C;
    background: transparent;
    border-color: #E1306C;
}

.social-btn.facebook:hover {
    color: #1877F2;
    background: transparent;
    border-color: #1877F2;
}

.social-btn.email:hover {
    color: var(--primary-color);
    background: transparent;
    border-color: var(--primary-color);
}

.social-btn i {
    font-size: 1.25rem;
}

/* Footer */
.mini-footer {
    margin-top: 2.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-height: 700px) {
    .glass-container {
        padding: 2rem 1.5rem;
    }

    .brand-header {
        margin-bottom: 1.5rem;
    }

    .logo {
        width: 110px;
    }
}