/*
 * Theme Name: Aisa Foto Coming Soon
 * Theme URI: https://aisafoto.es
 * Author: Andrea Isa
 * Version: 1.0
 * License: GPL v2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: aisa-coming-soon
 */

/* ============================================
   Reset & Base
   ============================================ */

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

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Cardo', serif;
    background-color: #0a00cd;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.85;
}

/* ============================================
   Hero Section
   ============================================ */

.cs-hero {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ============================================
   Main Container
   ============================================ */

.coming-soon-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.coming-soon-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* ============================================
   Image
   ============================================ */

.cs-image-wrapper {
    margin-bottom: 2rem;
}

.cs-image-wrapper img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.cs-placeholder-image {
    width: 150px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 0 auto;
}

/* ============================================
   Typography
   ============================================ */

.cs-heading {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-transform: lowercase;
}

.cs-title {
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cs-subtitle {
    font-size: 1.5rem;
    font-weight: 100;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cs-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 100;
}

/* ============================================
   Email Section
   ============================================ */

.cs-email-section {
    margin-bottom: 2.5rem;
}

.cs-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    opacity: 0.85;
}

.cs-email-link {
    font-size: 1.1rem;
    margin: 0;
}

.cs-email-link a {
    border-bottom: 2px solid #ffffff;
    padding-bottom: 4px;
}

.cs-email-link a:hover {
    opacity: 0.7;
}

/* ============================================
   Social Section
   ============================================ */

.cs-social-section {
    margin-bottom: 2rem;
}

.cs-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.cs-social-links a {
    font-size: 1rem;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

.cs-social-links a:hover {
    opacity: 0.7;
}

.cs-social-separator {
    opacity: 0.6;
}

/* ============================================
   Footer
   ============================================ */

.cs-footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .cs-hero {
        height: 80vh;
        background-attachment: scroll;
    }

    .coming-soon-main {
        padding: 1rem;
    }

    .cs-title {
        font-size: 2rem;
    }

    .cs-subtitle {
        font-size: 1.2rem;
    }

    .cs-description {
        font-size: 1rem;
    }

    .cs-footer {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .cs-hero {
        height: 60vh;
    }

    .cs-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .cs-subtitle {
        font-size: 1rem;
    }

    .cs-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .cs-social-links {
        gap: 0.5rem;
    }

    .cs-social-links a,
    .cs-label {
        font-size: 0.9rem;
    }
}

/* ============================================
   WordPress Admin Bar Fix
   ============================================ */

body.admin-bar {
    padding-top: 0;
}
