/*
Theme Name: Steiner Premium
Theme URI: https://umzug-steiner.at/
Author: Antigravity
Description: A premium, ultra-fast, custom WordPress theme designed for Umzug Steiner with Outfit and Plus Jakarta Sans typography, featuring luxurious animations and clean Gutenberg blocks.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: steiner-premium
*/

/* --- Base & Reset Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Layout Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #101D31;
    line-height: 1.2;
}

/* --- Buttons & Links --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #D7B635;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #c4a42b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(215, 182, 53, 0.3);
}

.btn-secondary {
    background-color: #101D31;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #1c2e4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 29, 49, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #D7B635;
    color: #D7B635;
}

.btn-outline:hover {
    background-color: #D7B635;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(215, 182, 53, 0.2);
}

/* --- Section Structure --- */
.section {
    padding: 100px 0;
}

.section-bg {
    background-color: #f8fafc;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: #D7B635;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #101D31;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 28px;
    }
}
