/* Header Styles */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(244, 241, 222, 0.95);
    backdrop-filter: blur(12px);
    z-index: 9999;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-area.scrolled {
    background: rgba(244, 241, 222, 1);
    box-shadow: var(--shadow-soft);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-logo:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary);
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.header-cta-button {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.header-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: var(--bg-card);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 5px auto;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Footer Styles */
.footer-area {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-info {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-contact-info strong {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Card Styles */
.card-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card-item:hover {
    transform: translateY(-8px) perspective(1000px) rotateY(2deg);
    box-shadow: var(--shadow-hover);
}

.card-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.card-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-item p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-primary:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-inset);
}

.btn-secondary {
    background: linear-gradient(145deg, var(--accent), var(--accent-hover));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-outline {
    background: var(--bg-card);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Form Styles */
.form-wrapper {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    background: var(--bg-primary);
    box-shadow: var(--shadow-inset);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    box-shadow: var(--shadow-inset), 0 0 0 3px rgba(224, 122, 95, 0.2);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

/* Cookie Banner */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-primary);
    color: white;
    padding: 1rem;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-notice p {
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: white;
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-decline:hover {
    background: white;
    color: var(--text-primary);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-soft);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header-cta-button {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-notice {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}