* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --dark-orange: #CC5500;
    --deep-orange: #8B4513;
    --accent-orange: #FF8C42;
    --light-orange: #FFA07A;
    --gold-orange: #FFB84D;
    --dark-brown: #5C2E0A;
    --darker-brown: #3D1F0A;
    --section-bg: #2D1A0F;
    --card-bg: #3D2415;
    --light-card: #4A2E1A;
    --white: #ffffff;
    --text-light: #F5E6D3;
    --text-dark: #E8D5C0;
    --text-muted: #D4C4B0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-brown);
    overflow-x: hidden;
    background: linear-gradient(180deg, #2D1A0F 0%, #3D1F0A 50%, #2D1A0F 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--deep-orange) 100%);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--gold-orange);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: color 0.3s;
}

.logo a:hover h1 {
    color: var(--accent-orange);
}

.nav {
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold-orange);
    background-color: rgba(255, 184, 77, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--darker-brown) 0%, var(--dark-brown) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 15px rgba(139, 69, 19, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold-orange);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--gold-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--gold-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--gold-orange);
    border-color: var(--gold-orange);
    background-color: rgba(255, 184, 77, 0.2);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-orange);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    z-index: 10000;
    max-width: 500px;
    width: 90%;
    display: none;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.cookie-popup.active {
    display: block;
}

.cookie-popup h3 {
    color: var(--dark-orange);
    margin-bottom: 1rem;
}

.cookie-popup p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: var(--primary-orange);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background-color: var(--dark-orange);
}

.cookie-btn.decline {
    background-color: var(--section-bg);
    color: var(--text-light);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.cookie-btn.decline:hover {
    background-color: var(--card-bg);
    border-color: rgba(255, 107, 53, 0.5);
}

/* Social Popup */
.social-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    z-index: 10001;
    max-width: 500px;
    width: 90%;
    display: none;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.social-popup.active {
    display: block;
}

.social-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
}

.social-popup-overlay.active {
    display: block;
}

.social-popup h3 {
    color: var(--gold-orange);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-popup-close:hover {
    background-color: rgba(255, 107, 53, 0.2);
    color: var(--gold-orange);
}

.social-search-form {
    display: flex;
    gap: 0.5rem;
}

.social-search-input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--section-bg);
    color: var(--text-light);
}

.social-search-input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.social-search-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.social-search-btn:hover {
    background-color: var(--dark-orange);
}

/* Accordion Styles */
.accordion {
    margin: 2rem 0;
}

.accordion-item {
    background: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.accordion-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--dark-orange) 0%, var(--deep-orange) 100%);
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--deep-orange) 0%, var(--dark-orange) 100%);
}

.accordion-header.active {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-orange) 100%);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background-color: var(--dark-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(204, 85, 0, 0.4);
}

.btn-secondary:hover {
    background-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 85, 0, 0.6);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background-color: var(--section-bg);
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--dark-brown) 0%, var(--deep-orange) 100%);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s;
        box-shadow: 0 5px 20px rgba(139, 69, 19, 0.4);
        z-index: 999;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cookie-popup {
        bottom: 10px;
        padding: 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

