/* Main Styles for Hearting Beauty - Warm Earth Tones */

/* Custom Gradients and Effects */
.hero-gradient {
    background: linear-gradient(135deg, #f5f7fa 0%, #E6DDD4 100%);
}

.treatment-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.earth-highlight {
    background: linear-gradient(90deg, rgba(212, 196, 176, 0.6) 0%, rgba(212, 196, 176, 0) 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
}

/* Earth tone color variables */
:root {
    --earth-primary: #B8860B;      /* Antik arany - primary buttons */
    --earth-secondary: #D4C4B0;    /* Világos mokka - backgrounds */
    --earth-tertiary: #E6DDD4;     /* Meleg bézs - light backgrounds */
    --earth-accent: #8B7355;       /* Darker earth - hover states */
    --earth-text: #5D4E37;         /* Földes barna - text */
}

/* Navigation Dropdown Styles */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 0.5rem;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #4b5563;
}

.dropdown-menu a:hover {
    background-color: var(--earth-tertiary);
    color: var(--earth-primary);
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 100;
    overflow-y: auto;
    padding: 2rem;
}

.mobile-menu.active {
    display: block !important;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #4b5563;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-items {
    margin-top: 3rem;
}

.mobile-menu-items a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.25rem;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-items a:hover {
    color: var(--earth-primary);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1.25rem;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
    background: none;
    text-align: left;
    cursor: pointer;
}

.mobile-dropdown-toggle:hover {
    color: var(--earth-primary);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 1.5rem;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu a {
    border-bottom: none;
    font-size: 1.125rem;
    padding: 0.5rem 0;
}

/* FAQ Styles */
.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-answer {
    transition: all 0.3s ease;
}

/* Hero Image Spacing */
.hero-image-container {
    margin-left: 2rem;
}

/* Button Styles */
.btn-earth-primary {
    background-color: var(--earth-primary);
    color: white;
    transition: all 0.3s ease;
}

.btn-earth-primary:hover {
    background-color: var(--earth-accent);
    color: white;
}

.btn-earth-secondary {
    background-color: white;
    color: var(--earth-primary);
    border: 2px solid var(--earth-primary);
    transition: all 0.3s ease;
}

.btn-earth-secondary:hover {
    background-color: var(--earth-tertiary);
    color: var(--earth-accent);
}

/* Text Colors */
.text-earth-primary {
    color: var(--earth-primary);
}

.text-earth-accent {
    color: var(--earth-accent);
}

.text-earth-text {
    color: var(--earth-text);
}

/* Icon Colors */
.icon-earth {
    color: var(--earth-primary);
}

.icon-earth-check {
    color: var(--earth-accent);
}

/* Link Styles */
.link-earth {
    color: var(--earth-primary);
    transition: color 0.3s ease;
}

.link-earth:hover {
    color: var(--earth-accent);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-gradient {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
    
    .treatment-card {
        margin-bottom: 1.5rem;
    }
    
    .grid {
        grid-template-columns: 1fr !important;
    }
    
    .md\:flex {
        flex-direction: column;
    }
    
    .md\:w-1\/2, .md\:w-1\/3, .md\:w-2\/3 {
        width: 100% !important;
    }
    
    .space-x-4, .space-x-6 {
        margin-top: 1rem;
    }
    
    .md\:space-x-4, .md\:space-x-12 {
        margin-left: 0 !important;
    }
    
    .md\:flex-row {
        flex-direction: column !important;
    }
    
    .md\:flex-row-reverse {
        flex-direction: column-reverse !important;
    }
    
    .md\:mb-0 {
        margin-bottom: 1.5rem !important;
    }
    
    .hero-image-container {
        margin-left: 0;
    }
}