/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

/* Base Styles */
:root {
    --primary-color: #4CAF50; /* Minecraft green */
    --primary-dark: #388E3C;
    --secondary-color: #795548; /* Minecraft brown */
    --text-color: #1e293b;
    --text-light: #64748b;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    
    /* Minecraft Colors */
    --grass-color: #5D9C3F;
    --dirt-color: #8B5A2B;
    --stone-color: #7F7F7F;
    --wood-color: #A0522D;
    --sky-color: #87CEEB;
    --night-color: #0C1445;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn i {
    margin-left: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--background-alt);
    color: var(--text-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #5D4037;
    color: white;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    transition: var(--transition);
}

.scroll-header {
    background-color: var(--background);
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-link {
    margin: 0 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    font-size: 1.25rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(to bottom, rgba(76, 175, 80, 0.05), var(--background));
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.feature-item i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Packages Section */
.packages {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.period {
    color: var(--text-light);
}

.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 0.75rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-text ul {
    margin-bottom: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.about-text li i {
    color: var(--success-color);
    margin-right: 0.75rem;
}

/* Minecraft Animation */
.minecraft-animation {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.minecraft-day-night-cycle {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(to bottom, var(--sky-color) 0%, #B0E0E6 100%);
    animation: dayNightCycle 30s infinite linear;
    overflow: hidden;
}

@keyframes dayNightCycle {
    0%, 100% {
        background: linear-gradient(to bottom, var(--sky-color) 0%, #B0E0E6 100%);
    }
    50% {
        background: linear-gradient(to bottom, var(--night-color) 0%, #1A237E 100%);
    }
}

.sun {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    border-radius: 50%;
    top: 40px;
    left: -60px;
    box-shadow: 0 0 40px #FFD700;
    animation: sunMove 30s infinite linear;
}

@keyframes sunMove {
    0% {
        transform: translateX(-60px);
        opacity: 0;
    }
    10% {
        transform: translateX(100px);
        opacity: 1;
    }
    40% {
        transform: translateX(400px);
        opacity: 1;
    }
    50% {
        transform: translateX(500px);
        opacity: 0;
    }
    100% {
        transform: translateX(-60px);
        opacity: 0;
    }
}

.moon {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #F5F5F5;
    border-radius: 50%;
    top: 50px;
    left: -40px;
    box-shadow: 0 0 20px #F5F5F5;
    animation: moonMove 30s infinite linear;
}

@keyframes moonMove {
    0% {
        transform: translateX(500px);
        opacity: 0;
    }
    50% {
        transform: translateX(-40px);
        opacity: 0;
    }
    60% {
        transform: translateX(100px);
        opacity: 1;
    }
    90% {
        transform: translateX(400px);
        opacity: 1;
    }
    100% {
        transform: translateX(500px);
        opacity: 0;
    }
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0;
    animation: starsAppear 30s infinite linear;
}

@keyframes starsAppear {
    0%, 40% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.landscape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
}

.ground {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--grass-color);
    border-top: 4px solid #3E8E41;
}

.tree {
    position: absolute;
    bottom: 50%;
    left: 30%;
    width: 40px;
    height: 100px;
}

.tree:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 10px;
    height: 40px;
    background-color: #8B4513;
}

.tree:after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 40px;
    height: 60px;
    background-color: #2E7D32;
    border-radius: 10px;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(to right, rgba(76, 175, 80, 0.05), rgba(76, 175, 80, 0.1));
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Contact Section - Simplified */
.contact {
    padding: 5rem 0;
}

.contact-content-simple {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--background-alt);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-logo p {
    color: var(--text-light);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-light);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 4.5rem;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--background);
        box-shadow: -1px 0 4px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        transition: 0.4s;
        z-index: 100;
    }
    
    .show-menu {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-link {
        display: block;
        padding: 0.75rem 2rem;
        margin: 0;
        width: 100%;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.hero h1,
.hero p,
.hero-buttons,
.hero-features {
    animation: slideUp 0.5s ease forwards;
}

.feature-card,
.pricing-card {
    animation: fadeIn 0.5s ease forwards;
}

.custom-sliders .slider-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
