/* 
 * CityNewbee Responsive Stylesheet
 * This file contains media queries to make the website responsive
 */
@media (max-width: 1150px) {
	.social-icons {
		display: flex;
		gap: 15px;
		margin-right:18px;
		margin-top:28px;
		margin-bottom:-48px;
	}
	
}
/* Large Tablets */
@media (max-width: 1024px) {
    /* Hero Carousel */
    .hero-carousel {
        height: 500px;
    }
    
    .review-text {
        font-size: 1.3rem;
    }
    
    /* Event Cards */
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Special Events */
    .special-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* About Page */
    .about-section .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
        max-width: 500px;
    }
    
    /* Events Page */
    .special-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .event-detail-content {
        flex-direction: column;
    }
    
    .event-image {
        margin-bottom: 30px;
    }
	
}

/* Medium Tablets & Landscape Mobile */
@media (max-width: 768px) {
    /* Header */
    .mobile-menu-toggle {
        display: flex;
		margin-right: -30px;
		margin-top: 14px;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .main-navigation.active {
        max-height: 300px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-navigation ul li {
        margin: 0 0 15px 0;
    }
    
    /* Hero Carousel */
    .hero-carousel {
        height: 400px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-text {
        font-size: 1.1rem;
    }
    
    /* Section Padding */
    section {
        padding: 60px 0;
    }
    
    /* Event Cards */
    .special-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        text-align: center;
        margin-bottom: 40px;
    }
    
    /* Events Page */
    .special-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* FAQ Items */
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Small Tablets & Mobile */
@media (max-width: 576px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* Hero Carousel */
    .hero-carousel {
        height: 350px;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    /* Event Cards */
    .event-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        height: 250px;
    }
    
    /* Special Events */
    .special-events-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .special-event-card {
        padding: 20px 15px;
    }
    
    .special-event-icon {
        font-size: 2rem;
    }
    
    .special-event-card h3 {
        font-size: 0.9rem;
    }
    
    /* Social Feeds */
    .tab-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    /* Events Page */
    .special-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form */
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
		margin-left:0px;
        margin-bottom: 30px;
    }
    
    /* About Page */
    .testimonials-section {
        padding: 30px 20px;
    }
    
    .testimonial {
        min-width: auto;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Hero Carousel */
    .hero-carousel {
        height: 300px;
    }
    
    .carousel-controls {
        bottom: 15px;
    }
    
    .prev-slide, .next-slide {
        width: 30px;
        height: 30px;
    }
    
    /* Special Events */
    .special-events-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA Button */
    .cta-button, .submit-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}



@media (max-width: 768px) {
    .header-content {
        position: relative;
        padding-right: 40px;
    }
    
    .social-icons-outer {
		margin: 0 auto;
		margin-top:5px;
		max-width: 1150px;
		border: 0px solid black;
		display: flex;
		justify-content: right;

	}

	.social-icons {
		display: flex;
		gap: 15px;
		margin-right:28px;
		margin-top:28px;
		margin-bottom:-48px;
	}
    
    .footer-social {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {

    
    .social-icon img {
        width: 22px;
        height: 22px;
    }
}







@media (max-width: 768px) {
    .footer-right {
        align-items: center;
        margin-top: 30px;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}