/*
Theme Name: ID Web Hosting
Theme URI: http://localhost
Author: Dev
Description: A minimal blank theme for custom development
Version: 1.3.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: id-web-hosting
*/

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

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section - Layout Only (all styling from admin settings) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__subheadline {
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__button {
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

.hero__button--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero__button--secondary {
    backdrop-filter: blur(8px);
}

.hero__button--secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
