/*
Theme Name: Astra Child
Description: Child Theme für Astra - Alex Individual Customizations
Author: Alex
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* ==========================================================================
   ALEX INDIVIDUAL STYLES
   ========================================================================== */


/* Astra sticky header - ENTFERNT */

/* Logo wieder sichtbar machen */
.site-branding {
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 9999 !important;
}

.site-branding img {
    display: block !important;
    visibility: visible !important;
    max-height: 60px !important;
    width: auto !important;
    position: relative !important;
    z-index: 9999 !important;
}

/* Header Bar normalisieren */
.main-header-bar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    z-index: 9999 !important;
}

/* ==============================
   WOOCOMMERCE
   ============================== */

/* Produktkarten Preise und Titel *)
/* Heading */
.products .product h2{
 font-weight:600;
 font-size:28px !important;
}

/* Bdi */
.products .price bdi{
 font-weight:400;
 color:#28282b;
 font-size:24px;
 letter-spacing:0px;
}

/* Einzelproduktseite Preise und Titel */
/* Post Title */
.ast-woocommerce-container .product h1{
 font-size:47px;
 line-height:1em;
}

/* Bdi */
.entry-summary .price bdi{
 font-weight:500;
 color:#28282b;
 font-size:24px;
}

/* Shipping text */
.ast-woocommerce-container .product .ast-shipping-text{
    display: none !important;
 font-size:12px;
}

/* Versandkostenlink unterstrichen */
/* Additional info */
.legal-price-info .wc-gzd-additional-info .wc-gzd-additional-info{
 text-decoration:underline;
}

/+ Paypal iFrame etwas weiter unten */
/* Iframe */
.ppcp-messages span iframe{

 margin-top:15px !important;
}

/* Kleinunternehmerhinweis auf Produktkarten */

/* Paragraph */
.products .product p{
 font-size:12px;
   display: none;
}


/* Warenkorb etc. */
/* List Item */
#shipping_method li{
 text-align:right;
}

/* Table Data */
.cart_totals .cart-subtotal td{
 text-align:right;
}

/* Table Data */
.cart_totals .order-total td{
 text-align:right;
}

/* Table Data */
.cart_totals .order-total-small-business-notice td{
 font-size:13px;
 line-height:1em !important;
}
/* Product subtotal */
.cart tbody .product-subtotal{
 text-align:right;
}

/* Product subtotal */
/* Product subtotal */
.cart thead .product-subtotal{
 text-align:right;
}

/* ==========================================================================
   FULLBLEED HERO IMAGE - FUNKTIONIERTE METHODE
   ========================================================================== */

/* Hero-Fullbleed Klasse - Bild über alle Container hinweg bis zu den Rändern */
.hero-fullbleed {
    width: 100vw;
    height: auto;
    max-width: none;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0px !important;
    object-fit: cover;
    object-position: center;
}


/* Hero Background Image */
.hero-fullbleed .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Hero Overlay */
.hero-fullbleed .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Hero Content */
.hero-fullbleed .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

/* Hero Title */
.hero-fullbleed .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Subtitle */
.hero-fullbleed .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Button */
.hero-fullbleed .hero-button {
    display: inline-block;
    padding: 15px 30px;
    background: #88181a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-fullbleed .hero-button:hover {
    background: #a01d20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-fullbleed {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-fullbleed .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-fullbleed .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-fullbleed .hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-fullbleed {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-fullbleed .hero-title {
        font-size: 2rem;
    }
    
    .hero-fullbleed .hero-subtitle {
        font-size: 1rem;
    }
}