/*
Theme Name: Iluzije
Theme URI: 
Author: Iluzije
Description: Jednostavna landing stranica - sajt se priprema
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iluzije
*/

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

html,
body {
    width: 100%;
    height: 100%;
    background-color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.logo-wrapper {
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
}

.logo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.coming-soon-text {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cccccc;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-wrapper {
        max-width: 280px;
        margin-bottom: 30px;
    }

    .coming-soon-text {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .logo-wrapper {
        max-width: 200px;
        margin-bottom: 25px;
    }

    .coming-soon-text {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
}