/* ============================================================
   TERRACOTTA & CHARCOAL (Organic Luxury) Theme
   the-models Dubai - Model Agency Landing Page
   ============================================================
   Color Palette:
   - Terracotta:   #c4683c (accent), #a3522d (dark accent)
   - Charcoal:     #2a2a2a, #3d3d3d
   - Cream:        #faf7f2, #f3ede4
   - Sage:         #7a8b6f, #627358
   ============================================================ */

/* --- Decorative Section Dividers --- */
.box-2-white + .box-2-white {
    position: relative;
}

.box-2-white + .box-2-white::before {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: rgba(196, 104, 60, 0.3);
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* --- Subtle texture overlay on cream sections --- */
.box-2-white:nth-child(odd) {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(196, 104, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(122, 139, 111, 0.03) 0%, transparent 50%);
}

/* --- Enhanced heading style with Cormorant Garamond italic for subheadings --- */
.box-2-white-inner-1024px > h2[style*="text-align: center"] {
    font-style: italic;
    font-weight: 400;
    color: #3d3d3d;
}

/* --- Enhanced dark section styling --- */
.box-1-dark {
    background-image:
        linear-gradient(135deg, #2a2a2a 0%, #333333 50%, #2a2a2a 100%);
}

.box-1-dark .box-text-50-prozent-links,
.box-1-dark .box-text-50-prozent-rechts {
    position: relative;
}

.box-1-dark .box-text-50-prozent-links {
    border-right: 1px solid rgba(196, 104, 60, 0.15);
    padding-right: 4%;
}

.box-1-dark .box-text-50-prozent-rechts {
    padding-left: 4%;
}

@media only screen and (max-width:640px) {
    .box-1-dark .box-text-50-prozent-links {
        border-right: none;
        border-bottom: 1px solid rgba(196, 104, 60, 0.15);
        padding-right: 0;
        padding-bottom: 30px;
    }
    .box-1-dark .box-text-50-prozent-rechts {
        padding-left: 0;
        padding-top: 30px;
    }
}

/* --- Button refinements --- */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-success {
    position: relative;
    overflow: hidden;
}

.btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-success:hover::before {
    left: 100%;
}

/* --- Image styling refinements --- */
.box-bild-rechts-text-umflossen img,
.box-bild-links-text-umflossen img {
    filter: contrast(1.02) saturate(0.95);
}

/* --- Enhanced footer styling --- */
.footer {
    background-image:
        linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
}

.footer-end img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(1.1);
}

.footer-end img:hover {
    opacity: 1;
}

/* --- Swiper refinements --- */
.swiper {
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Smooth page load --- */
body {
    animation: pageLoad 0.6s ease-out;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Cookie Bar (if needed) --- */
#cookie-bar {
    font-family: 'Nunito Sans', sans-serif;
    background-color: rgba(42, 42, 42, 0.97);
    height: auto;
    line-height: 24px;
    color: #faf7f2;
    text-align: center;
    padding: 12px 5px 15px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}
#cookie-bar.fixed { position: fixed; top: 0; left: 0; width: 100%; z-index: 9999; }
#cookie-bar.fixed.bottom { bottom: 0; top: auto; }
#cookie-bar p { margin: 0; padding: 0; }
#cookie-bar a {
    color: #faf7f2;
    display: inline-block;
    border-radius: 0;
    text-decoration: none;
    padding: 2px 10px;
    margin-left: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}
#cookie-bar .cb-enable { background: #c4683c; }
#cookie-bar .cb-enable:hover { background: #a3522d; }
#cookie-bar .cb-disable { background: #990000; }
#cookie-bar .cb-disable:hover { background: #bb0000; }
#cookie-bar .cb-policy { background: #7a8b6f; }
#cookie-bar .cb-policy:hover { background: #627358; }

@media only screen and (max-width:640px) {
    #cookie-bar { padding-top: 6px; padding-bottom: 6px; font-size: 0.75rem; }
}