/* Responsive Styles for Crowned Eagle Caravan Park Theme */

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Footer Responsive Styles */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .content-area {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .main-navigation ul {
        gap: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        float: right;
        margin-top: 10px;
    }
    
    .main-navigation {
        float: none;
        width: 100%;
        margin-top: 1rem;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        gap: 0;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .main-navigation ul.show {
        display: flex;
    }
    
    .main-navigation li {
        width: 100%;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(44,62,80,0.1);
    }
    
    .main-navigation a:hover {
        background: #3498db;
        color: white;
        border-radius: 5px;
    }
    
    .site-header {
        text-align: left;
        padding: 1rem 0;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .site-main {
        margin-top: 100px;
    }
    
    .content-area {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    h1 {
        font-size: 2rem;
        text-align: left;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Grid adjustments for mobile */
    .content-area > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Background attachment fix for mobile */
    body {
        background-attachment: scroll;
    }
    
    .elementor-section.crowned-bg,
    .elementor-section.crowned-eagle-bg {
        background-attachment: scroll !important;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
    
    .content-area {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .site-main {
        margin-top: 90px;
    }
}

/* Large Screen Styles */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .content-area {
        padding: 4rem;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .menu-toggle {
        display: none;
    }
    
    .site-main {
        margin-top: 0;
    }
    
    .content-area {
        background: white;
        box-shadow: none;
        padding: 1rem;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .content-area {
        background: rgba(255,255,255,1);
        border: 2px solid #000;
    }
    
    .site-header {
        background: rgba(255,255,255,1);
        border-bottom: 2px solid #000;
    }
    
    .btn {
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    body {
        background-attachment: scroll;
    }
}

