/*
Theme Name: Auals e Dutgs
Theme URI: https://aualsedutgs.ch/
Author: Dr. Helmut Zepik
Author URI: https://aualsedutgs.ch/
Description: WordPress tema for Auals e Dutgs - Traditionelle Bewässerung in Graubünden
Version: 1.0
*/

/* ============================================
   GLOBAL VARIABLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-deep: #0a3143;
    --primary-rich: #1a4b6d;
    --accent-bronze: #b87c4b;
    --accent-gold: #c49a6c;
    --accent-light: #e8d6c0;
    --light-elegant: #f8f6f2;
    --white: #ffffff;
    --dark-text: #1e2a3a;
    --shadow-soft: 0 20px 40px -15px rgba(10, 49, 67, 0.15);
    --shadow-hover: 0 30px 50px -20px rgba(184, 124, 75, 0.25);
    --shadow-card: 0 12px 25px -10px rgba(10, 49, 67, 0.1);
    --shadow-dropdown: 0 15px 35px -10px rgba(0, 0, 0, 0.15);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 1s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 90px;
    --navbar-height-mobile: 75px;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--dark-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#page-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: var(--navbar-height);
}

#page-container::-webkit-scrollbar {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-rich));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ============================================
   NAVIGATION - OPTIMIZED FOR DESKTOP & MOBILE
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(10, 49, 67, 0.08);
    border-bottom: 2px solid var(--accent-bronze);
    padding: 0.5rem 0;
    transition: all var(--transition-smooth);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-brand img {
    height: clamp(45px, 6vw, 65px);
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform var(--transition-smooth);
}

.navbar-brand img:hover {
    transform: scale(1.02);
}

.navbar-brand span {
    font-weight: 700;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-rich));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border-left: 3px solid var(--accent-bronze);
    padding-left: clamp(10px, 2vw, 15px);
}

.navbar-nav {
    gap: 0.25rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--primary-deep);
    padding: 0.6rem 1rem !important;
    transition: all var(--transition-smooth);
    border-radius: 8px;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-bronze);
    background: rgba(184, 124, 75, 0.08);
}

.navbar-nav .nav-link.active {
    color: var(--accent-bronze);
    background: rgba(184, 124, 75, 0.1);
}

/* Dropdown Styles - Desktop */
.dropdown-menu {
    border: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: var(--shadow-dropdown);
    padding: 0.75rem 0;
    margin-top: 0.75rem;
    border: 1px solid rgba(184, 124, 75, 0.2);
    min-width: 320px;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-weight: 500;
    color: var(--primary-deep);
    padding: 0.7rem 1.2rem;
    transition: all var(--transition-smooth);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
}

.dropdown-item i {
    font-size: 1rem;
    color: var(--accent-gold);
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}

.dropdown-item span {
    flex: 1;
}

.dropdown-item:hover {
    background: linear-gradient(95deg, rgba(184, 124, 75, 0.12), rgba(26, 75, 109, 0.08));
    color: var(--accent-bronze);
    padding-left: 1.5rem;
    padding-right: 0.9rem;
}

.dropdown-item:active {
    background: rgba(184, 124, 75, 0.2);
    color: var(--accent-bronze);
}

.nav-item.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item.dropdown .nav-link::after {
    transition: transform var(--transition-smooth);
}

.nav-item.dropdown.show .nav-link::after {
    transform: rotate(180deg);
}

/* Mobile Dropdown Styles */
@media (max-width: 991.98px) {
    :root {
        --navbar-height: var(--navbar-height-mobile);
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 24px 24px;
        padding: 0.75rem 1rem 1.25rem;
        margin-top: 0.5rem;
        box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
        max-height: calc(100vh - var(--navbar-height-mobile) - 10px);
        overflow-y: auto;
        border-top: 1px solid rgba(184, 124, 75, 0.2);
    }
    
    .navbar-nav {
        gap: 0.5rem;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 12px;
        font-size: 1rem;
    }
    
    /* Mobile Dropdown Parent */
    .nav-item.dropdown {
        margin: 0;
        width: 100%;
    }
    
    /* Mobile Dropdown Toggle Button */
    .nav-item.dropdown .nav-link {
        background: linear-gradient(135deg, rgba(10, 49, 67, 0.04), rgba(184, 124, 75, 0.04));
        border-radius: 12px;
        padding: 0.85rem 1rem !important;
        margin: 0;
        justify-content: space-between;
        font-weight: 600;
    }
    
    .nav-item.dropdown .nav-link:hover {
        background: linear-gradient(135deg, rgba(10, 49, 67, 0.08), rgba(184, 124, 75, 0.08));
    }
    
    .nav-item.dropdown .nav-link::after {
        margin-left: auto;
        transition: transform var(--transition-smooth);
        font-size: 0.85rem;
    }
    
    .nav-item.dropdown.show .nav-link {
        background: linear-gradient(135deg, rgba(184, 124, 75, 0.12), rgba(10, 49, 67, 0.08));
        color: var(--accent-bronze);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .nav-item.dropdown.show .nav-link::after {
        transform: rotate(180deg);
    }
    
    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0.25rem 0 0.5rem 0;
        padding: 0.5rem 0;
        background: rgba(250, 248, 245, 0.98);
        border: 1px solid rgba(184, 124, 75, 0.2);
        border-radius: 12px;
        box-shadow: none;
        transform: none !important;
        opacity: 1 !important;
        display: none;
        min-width: auto;
        animation: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    /* Mobile Dropdown Items */
    .dropdown-item {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(184, 124, 75, 0.08);
        display: flex;
        align-items: center;
        gap: 12px;
        white-space: normal;
        word-wrap: break-word;
        word-break: break-word;
        line-height: 1.4;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item i {
        font-size: 1rem;
        width: 24px;
        margin-top: 0;
        flex-shrink: 0;
    }
    
    .dropdown-item span {
        flex: 1;
        white-space: normal;
        word-wrap: break-word;
        word-break: break-word;
    }
    
    .dropdown-item:hover {
        padding-left: 1rem;
        padding-right: 1rem;
        background: linear-gradient(95deg, rgba(184, 124, 75, 0.12), rgba(26, 75, 109, 0.05));
    }
    
    /* Mobile Button */
    .btn-elegant {
        margin-top: 0.75rem;
        text-align: center;
        width: 100%;
        display: block;
        padding: 0.85rem;
        font-size: 1rem;
        white-space: normal;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .dropdown-item {
        padding: 0.75rem 0.85rem;
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .dropdown-item i {
        font-size: 0.9rem;
        width: 22px;
    }
    
    .nav-item.dropdown .nav-link {
        padding: 0.75rem 0.85rem !important;
        font-size: 0.95rem;
    }
}

/* Extra Small Devices (max-width: 375px) */
@media (max-width: 375px) {
    .dropdown-item {
        padding: 0.7rem 0.75rem;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .dropdown-item i {
        font-size: 0.85rem;
        width: 20px;
    }
    
    .navbar-brand span {
        font-size: 1rem;
    }
}

/* Desktop Dropdown Hover Effect */
@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }
    
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Prevent closing when clicking inside dropdown */
    .dropdown-menu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Ensure dropdown stays open when hovering from link to menu */
    .nav-item.dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0.25rem;
    }
    
    /* Right-aligned dropdown for better visibility */
    .dropdown-menu-end {
        left: auto;
        right: 0;
    }
}

.btn-elegant {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-rich));
    color: var(--white) !important;
    border: none;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    box-shadow: 0 6px 15px rgba(10, 49, 67, 0.2);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.375rem;
}

.btn-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 124, 75, 0.3);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: min(70vh, 800px);
    min-height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active img {
    transform: scale(1.05);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    width: 100%;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.slide-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.slide-content h3 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.slider-dot.active {
    background: var(--accent-bronze);
    transform: scale(1.3);
    border-color: var(--white);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    cursor: pointer;
    transition: all var(--transition-smooth);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--accent-bronze);
    border-color: var(--white);
}

.slider-arrow.prev {
    left: max(15px, 2vw);
}

.slider-arrow.next {
    right: max(15px, 2vw);
}

/* Partner Section */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: var(--white);
    border: 1px solid rgba(184, 124, 75, 0.2);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    width: 100%;
    aspect-ratio: 230 / 140;
    min-height: 140px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-bronze);
}

.partner-logo-rect {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-logo-rect img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 992px) and (min-width: 577px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-card {
        aspect-ratio: auto;
        min-height: 120px;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Gallery */
.gallery-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--white);
    outline: 1px solid var(--accent-bronze);
    transition: transform var(--transition-smooth), outline-color var(--transition-smooth);
}

.gallery-img:hover {
    transform: scale(1.02);
    outline-color: var(--accent-gold);
}

/* Event Section */
.event-section {
    background: linear-gradient(145deg, #f9f7f4, var(--white));
    padding: clamp(2rem, 6vw, 4rem) 0;
}

.poster-wrapper {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 0;
    padding: 0;
}

.event-poster-new {
    max-width: 100%;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    box-shadow: none;
}

.program-compact {
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(184, 124, 75, 0.1);
    height: 100%;
}

.program-compact-header {
    font-weight: 800;
    color: var(--primary-deep);
    border-bottom: 2px solid var(--accent-bronze);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compact-item {
    display: grid;
    grid-template-columns: minmax(70px, 85px) minmax(130px, 160px) 1fr;
    gap: 0.6rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(184, 124, 75, 0.08);
    font-size: 0.85rem;
}

.compact-item.break {
    background: rgba(184, 124, 75, 0.05);
    border-radius: 10px;
    padding: 0.5rem 0.6rem;
}

.compact-time {
    font-weight: 700;
    color: var(--accent-bronze);
}

.compact-speaker {
    font-weight: 600;
    color: var(--primary-deep);
}

.compact-note {
    grid-column: 2 / -1;
    font-style: italic;
    color: var(--primary-rich);
}

.full-report-container {
    margin-top: 2.5rem;
}

.summary-card-long {
    background: var(--white);
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(184, 124, 75, 0.1);
}

.two-column-report {
    column-count: 2;
    column-gap: 2rem;
    column-rule: 1px solid rgba(184, 124, 75, 0.2);
}

.report-header {
    column-span: all;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid var(--accent-bronze);
}

.report-header p {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 0;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-rich));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.summary-text-long {
    font-size: clamp(0.95rem, 1.8vw, 1rem);
    line-height: 1.7;
    color: var(--dark-text);
}

.summary-text-long p {
    margin-bottom: 1.2rem;
    break-inside: avoid-column;
    page-break-inside: avoid;
}

.summary-text-long a {
    color: var(--accent-bronze);
    text-decoration: underline;
    word-break: break-word;
}

@media (max-width: 768px) {
    .two-column-report {
        column-count: 1;
        column-rule: none;
    }
    
    .compact-item {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .compact-note {
        grid-column: 1;
    }
    
    .report-header p {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
    }
}

/* Footer */
.footer {
    background: linear-gradient(145deg, #0a1f2b, #0a3143);
    color: var(--white);
    padding: 3rem 0 2rem;
    margin-top: 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-bronze), var(--accent-gold), var(--accent-bronze));
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-bronze);
}

.footer-logo span {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-bronze);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-bronze);
}

.footer-partner-item {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-partner-item i {
    color: var(--accent-bronze);
}

.footer-partner-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-partner-item a:hover {
    color: var(--accent-bronze);
    text-decoration: underline;
}

.footer-divider {
    margin: 2rem 0 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 124, 75, 0.3), transparent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-rich));
    color: var(--white);
    border: 2px solid var(--accent-bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
    z-index: 9999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--accent-bronze);
    border-color: var(--white);
}

/* Contact */
.contact-card-reduced {
    background: var(--white);
    border: 1px solid rgba(184, 124, 75, 0.2);
    padding: 1.8rem 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    border-radius: 20px;
    text-align: center;
}

.contact-card-reduced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-bronze);
}

.contact-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-bronze);
}

.contact-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-rich);
}

.contact-role {
    font-size: 1rem;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-rich));
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.375rem;
}

.bg-light-elegant {
    background: linear-gradient(145deg, var(--light-elegant), #f0ebe4);
}

@media (max-width: 991px) {
    #page-container {
        padding-top: var(--navbar-height-mobile);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .full-report-container {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 400px;
    }
}

@media print {
    .navbar, .hero-slider, .back-to-top {
        display: none;
    }

    #page-container {
        padding-top: 0;
    }
}