/* Responsive Design */

/* Large Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container {
        max-width: 720px;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .themegoods-animated-text h1,
    .themegoods-animated-text h2 {
        font-size: 48px;
    }
    
    .tour-carousel-featured-image {
        height: 500px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
     .hero-slider-container {
        height: 70vh; /* adjust as needed */
        min-height: 400px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 250px;
        margin: 0 auto;
    }
    .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .container {
        max-width: 540px;
    }
    
    h1 { font-size: 30px; }
    h2 { font-size: 26px; }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .themegoods-animated-text h1,
    .themegoods-animated-text h2 {
        font-size: 36px;
    }
    
    .elementor-element-e8116a1 {
        min-height: 500px;
    }
    
    .tour-carousel-featured-image {
        height: 400px;
    }
    
    .e-con-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .elementor-element-43ee9c1,
    .elementor-element-6d6fb54 {
        position: relative;
        width: 100%;
        transform: none;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .elementor-social-icons-wrapper {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    h1 { font-size: 24px; }
    h2 { font-size: 22px; }
    
    .themegoods-animated-text h1,
    .themegoods-animated-text h2 {
        font-size: 28px;
    }
    
    .tour-carousel-featured-image {
        height: 350px;
    }
    
    .tour-carousel-content {
        padding: 20px;
    }
    
    .tour-carousel-header-title h3 {
        font-size: 22px;
    }
    
    .button, .elementor-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .mobile_menu_wrapper {
        width: 280px;
        padding: 30px 20px;
    }
    
    .mobile_main_nav a {
        font-size: 22px;
    }
}


/* Sub-Header */
.sub-header {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 0;
    position: relative;
    z-index: 999;
}

.sub-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
    transition: color 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--color-gold);
}

.social-icons a:last-child {
    margin-right: 0;
}

.mobile-menu-toggle {
    display: none;
}

/* Desktop: social icons on the right, burger hidden */
@media (min-width: 1025px) {
    .sub-header-inner {
        justify-content: flex-end;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile: social icons on left, burger on right */
@media (max-width: 1024px) {
    .sub-header-inner {
        justify-content: space-between;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .mobile-menu-toggle a {
        color: #d3b449;
        font-size: 24px;
    }
    /* Hide the main navigation's burger if still present – but we removed it */
}






