/*
Theme Name: Nova
Theme URI: https://astracom.net.au
Author: Aster Build
Description: A lightweight, high-performance theme for hosting services, replacing WPBakery.
Version: 1.0
License: GPL
Text Domain: novatheme
*/

/* --- CORE THEME LAYOUT --- */
body {
    font-family: 'Inter', sans-serif;
    color: #4a5568;
    background-color: #ffffff;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- REPLACEMENT FOR REVOLUTION SLIDER (CSS SCROLL SNAP) --- */
.hero_slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.hero_slider::-webkit_scrollbar {
    display: none;
}
.hero_slider {
    -ms-overflow-style: none; 
    scrollbar-width: none;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    position: relative;
    padding: 80px 5%;
    text-align: center;
}

.slide .content {
    max-width: 800px;
    margin: 0 auto;
}

/* --- TYPOGRAPHY & UI --- */
.hero_title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: #1a202c;
    margin-bottom: 1rem;
}

.btn_primary {
    background-color: #3182ce;
    padding: 14px 30px;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

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

/* Pricing Grid */
.pricing_grid {
    display: grid;
    grid-template_columns: repeat(auto_fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 40px 5%;
}

.pricing_card {
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.spacer {
    height: 80px;
}

@media (max-width: 768px) {
    .hero_title { font-size: 2rem; }
}
