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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #064e3b;
    color: white;
    overflow: hidden; 
}

.presentation-container {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.slide {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.9) 0%, rgba(6, 78, 59, 0.7) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.8s ease-out forwards;
}

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

h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #bef264;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    border-radius: 20px;
    border-left: 6px solid #bef264;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(0, 0, 0, 0.4);
}

.benefit-item h3 {
    color: #bef264;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item p {
    font-size: 1.1rem;
    margin: 0;
    color: #e2e8f0;
}

.logo-overlay {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 100;
    width: 100px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
    transition: transform 0.3s ease;
}

.logo-overlay:hover {
    transform: scale(1.1) rotate(-5deg);
}

.home-btn {
    position: fixed;
    top: 35px;
    right: 30px;
    z-index: 100;
    background: #bef264;
    color: #064e3b;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.home-btn:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: #bef264;
    font-size: 2.5rem;
    animation: bounce 2s infinite;
    text-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

.highlight {
    color: #bef264;
    font-weight: 900;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background-color: #bef264; 
    color: #064e3b;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .glass-card { padding: 1.5rem; margin: 0 1rem; }
    .logo-overlay { width: 70px; top: 15px; left: 15px; }
    .home-btn { top: 25px; right: 15px; padding: 8px 15px; font-size: 0.8rem; }
    .slide { padding: 1rem; }
}
