/**
 * Responsive CSS file for Elite Hair Studio website
 */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .banner-content h1 {
        font-size: 42px;
    }
    
    .banner-content h3 {
        font-size: 22px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .footer-content-premium {
        gap: 30px;
    }
    
    .premium-nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .premium-appointment-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 0;
    }
    
    .navbar-nav .nav-item.ms-lg-3 {
        margin-top: 10px;
    }
    
    .banner-slide {
        height: 500px;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .banner-content h3 {
        font-size: 20px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .about-content {
        margin-top: 30px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    /* Footer responsive styles */
    .brand-column {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .links-column,
    .contact-column {
        flex: 0 0 48%;
    }

    .page-banner {
        padding: 80px 0;
    }
    
    .page-banner-content h1 {
        font-size: 36px;
    }
    
    .page-banner-full {
        height: 400px;
    }
    
    .page-banner-full .banner-title {
        font-size: 2.5rem;
    }
    
    .page-banner-full .banner-subtitle {
        font-size: 1.2rem;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-brand {
        max-width: 250px;
    }

    .video-content h2 {
        font-size: 30px;
    }
    
    .video-content p {
        font-size: 16px;
    }

    .footer-content-premium {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand-premium {
        grid-column: 1;
    }
    
    .footer-nav-premium {
        grid-column: 2;
    }
    
    .footer-contact-premium {
        grid-column: 1 / span 2;
        margin-top: 20px;
    }
    
    .contact-items-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .premium-footer {
        padding: 70px 0 30px;
    }
    
    .floating-1 {
        width: 120px;
        height: 120px;
    }
    
    .floating-3 {
        width: 100px;
        height: 100px;
    }

    .premium-navbar {
        position: relative;
    }
    
    .premium-navbar-toggler {
        display: block;
        margin-left: auto;
    }
    
    .premium-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        z-index: 1000;
    }
    
    .premium-nav.show {
        max-height: 500px;
        padding: 20px;
        opacity: 1;
        visibility: visible;
    }
    
    .premium-nav-item {
        width: 100%;
        margin: 5px 0;
    }
    
    .premium-nav-link {
        padding: 10px 0;
        width: 100%;
        display: block;
    }
    
    .premium-nav-link::before {
        display: none;
    }
    
    .premium-appointment-btn {
        margin: 10px 0 0;
        width: 100%;
        text-align: center;
        display: inline-block;
    }
    
    .premium-contact-info span {
        margin-right: 15px;
    }
    
    .premium-social-icons {
        display: none;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .top-header .contact-info,
    .top-header .working-hours {
        text-align: center;
    }
    
    .top-header .working-hours {
        margin-top: 5px;
    }
    
    .banner-slide {
        height: 450px;
    }
    
    .banner-content h1 {
        font-size: 30px;
    }
    
    .banner-content h3 {
        font-size: 18px;
    }
    
    .banner-content p {
        font-size: 14px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .service-tabs .nav-tabs .nav-link {
        padding: 8px 20px;
        margin-bottom: 10px;
    }
    
    .gallery-filter button {
        margin-bottom: 10px;
    }
    
    /* Appointment responsive styles */
    .time-slot {
        padding: 6px 0;
        font-size: 14px;
    }
    
    .appointment-info {
        margin-top: 30px;
    }

    /* Footer responsive styles */
    .footer-main {
        flex-direction: column;
    }

    .footer-column {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        margin-top: 15px;
        justify-content: center;
    }

    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner-content h1 {
        font-size: 30px;
    }
    
    .page-banner-full {
        height: 300px;
    }
    
    .page-banner-full .banner-title {
        font-size: 2rem;
    }
    
    .page-banner-full .banner-subtitle {
        font-size: 1rem;
    }
    
    .secondary-banner-item,
    .product-banner-item {
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
    }
    
    .footer-brand {
        max-width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: space-between;
        width: 100%;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        margin-top: 15px;
        justify-content: center;
    }

    .video-content h2 {
        font-size: 24px;
    }
    
    .video-content p {
        font-size: 14px;
    }

    .footer-content-premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand-premium, 
    .footer-nav-premium, 
    .footer-contact-premium {
        grid-column: 1;
    }
    
    .footer-nav-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-items-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-premium {
        flex-direction: column;
        text-align: center;
    }

    .footer-copyright {
        margin-bottom: 15px;
    }
    
    .footer-links-premium {
        justify-content: center;
    }
    
    .premium-footer {
        padding: 60px 0 30px;
    }
    
    .footer-wave svg {
        height: 50px;
    }

    .footer-nav-premium .footer-nav-title {
        margin-bottom: 25px;
        font-size: 20px;
    }

    .footer-nav-premium .footer-nav-title::after {
        width: 60px;
        bottom: -10px;
    }

    .premium-top-header {
        padding: 10px 0;
    }
    
    .premium-contact-info, 
    .premium-working-hours {
        text-align: center;
        justify-content: center;
    }
    
    .premium-working-hours {
        margin-top: 8px;
    }
    
    .premium-contact-info span {
        font-size: 13px;
    }
    
    .premium-contact-info i,
    .premium-working-hours i {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .premium-main-header {
        padding: 12px 0;
    }
    
    .premium-logo h1 {
        font-size: 24px;
    }
    
    .premium-logo img {
        max-height: 50px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .banner-slide {
        height: 400px;
    }
    
    .banner-content h1 {
        font-size: 24px;
    }
    
    .banner-content h3 {
        font-size: 16px;
    }
    
    .banner-content p {
        font-size: 14px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .service-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .service-tabs .nav-tabs .nav-link {
        white-space: nowrap;
    }
    
    .gallery-filter {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    
    .gallery-filter button {
        display: inline-block;
    }

    /* Footer responsive styles */
    .links-column,
    .contact-column {
        flex: 0 0 100%;
    }

    .page-banner {
        padding: 50px 0;
    }
    
    .page-banner-content h1 {
        font-size: 24px;
    }
    
    .page-banner-full {
        height: 250px;
    }
    
    .page-banner-full .banner-title {
        font-size: 1.8rem;
    }
    
    .page-banner-full .banner-subtitle {
        font-size: 0.9rem;
    }
    
    .secondary-banner-item,
    .product-banner-item {
        height: 250px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .footer-links-column {
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .footer-links-column a {
        justify-content: center;
    }
    
    .contact-info {
        min-width: 100%;
    }

    .video-content h2 {
        font-size: 20px;
    }
    
    .video-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .video-content .btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .footer-nav-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-links-premium {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }
    
    .premium-footer {
        padding: 50px 0 30px;
    }
    
    .footer-brand-premium h4 {
        font-size: 24px;
    }
    
    .footer-nav-title {
        font-size: 18px;
    }
    
    .floating-element {
        display: none;
    }

    .footer-nav-premium .footer-nav-title {
        margin-bottom: 20px;
        font-size: 18px;
    }
    
    .footer-nav-premium .footer-nav-title::after {
        width: 50px;
        bottom: -8px;
    }

    .premium-contact-info span:not(:first-child) {
        display: none;
    }
    
    .premium-logo h1 {
        font-size: 20px;
    }
    
    .premium-logo img {
        max-height: 75px;;
    }
    
    .premium-nav.show {
        max-height: 400px;
    }
} 