/* General Layout */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0F1412;
    color: #EAEAEA;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

/* Logo (Eclipse Circle) */
.eclipse {
    width: 80px;
    height: 80px;
    border: 2px solid #8BAE8D;
    border-radius: 50%;
    margin: 20px auto 40px auto;
    position: relative;
    transition: all 0.6s ease-in-out;
    background: radial-gradient(circle at center, rgba(139,174,141,0.15) 0%, rgba(15,20,18,1) 70%);
    box-shadow: 0 0 10px rgba(139,174,141,0.25);
    animation: breathing-glow 6s ease-in-out infinite;
}

@keyframes breathing-glow {
    0% { box-shadow: 0 0 15px rgba(139,174,141,0.2); }
    50% { box-shadow: 0 0 30px rgba(139,174,141,0.5); }
    100% { box-shadow: 0 0 15px rgba(139,174,141,0.2); }
}

.eclipse:hover {
    transform: scale(1.08);
    box-shadow: 
        0 0 35px rgba(139,174,141,0.6),
        0 0 70px rgba(139,174,141,0.4),
        0 0 120px rgba(139,174,141,0.2);
    background: radial-gradient(circle at center, rgba(139,174,141,0.25) 0%, rgba(15,20,18,1) 75%);
    border-color: #A6C8A8;
    cursor: pointer;
    filter: drop-shadow(0 0 15px rgba(139,174,141,0.8));
}

/* Hero Text */
.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    line-height: 1.4em;
    color: #EAEAEA;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    margin: 0 10px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn.bronze {
    background-color: #C49B66;
    color: #0F1412;
}

.btn.bronze:hover {
    box-shadow: 0 0 15px rgba(196,155,102,0.5);
}

.btn.outline {
    background: transparent;
    border: 1px solid #8BAE8D;
    color: #EAEAEA;
}

.btn.outline:hover {
    background-color: rgba(139,174,141,0.1);
    box-shadow: 0 0 10px rgba(139,174,141,0.3);
}

/* Cards */
.cards {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #1A2320;
    padding: 20px 40px;
    border-radius: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    color: #EAEAEA;
    min-width: 180px;
    flex: 1 1 200px;
    text-align: center;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(139,174,141,0.15);
}

/* Footer */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #A8B2A5;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    margin-top: 60px;
}

/* 🌐 Responsive Adjustments */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .cards {
        gap: 15px;
    }

    .card {
        font-size: 1.1rem;
        padding: 18px 30px;
    }

    .eclipse {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 80%;
        max-width: 280px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.3em;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .card {
        font-size: 1rem;
        padding: 16px 24px;
    }

    footer {
        font-size: 0.8rem;
        margin-top: 40px;
    }
}
