@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #D4AF37; /* Metalic Gold */
    --secondary-color: #90EE90; /* Light Green */
    --accent-color: #FFD700; /* Bright Gold */
    --text-color: #f4f4f4;
    --bg-color: #0b0b0b; /* Deep Black */
    --card-bg: rgba(20, 20, 20, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(212, 175, 55, 0.2);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('IMAGE/hero-bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    width: 90%;
    text-align: center;
    padding: 4rem 2rem;
    z-index: 1;
}

/* Background elements for depth */
.bg-circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    right: -100px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -50px;
}

.logo-container {
    margin-bottom: 4rem;
    animation: fadeInDown 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    transition: transform 0.5s ease;
}

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

.hero-content {
    background: transparent;
    padding: 0;
    margin-bottom: 4rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.9);
}

.message {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #fff;
    margin-bottom: 5rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Subscription */
.subscribe-section {
    padding: 4rem 3rem;
    border-radius: 30px;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.1), transparent);
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input {
    width: 100%;
    padding: 1.2rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.glow-btn {
    background: linear-gradient(45deg, #FFD700, #D4AF37);
    color: #000;
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.glow-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    filter: brightness(1.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer {
    margin-top: 6rem;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 1px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 2rem 1rem; }
    .subscribe-section { padding: 3rem 1.5rem; }
    .benefit-card { padding: 2rem 1rem; }
}
