* {
    margin:0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
.logo-img {
    margin-top: -46px;
    width: 140px;  /* Adjust width (Try 80px, 120px, etc.) */
    height: auto;  /* Keeps the aspect ratio */
    max-height: 150px; /* Ensures it doesn't exceed header height */
}

body {
    overflow-x: hidden;
    color: white;
    background-color: #000;
}


/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    z-index: -1;
    background-image: url('video-mobile-fallback.gif'); /* or just use this GIF for everything */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.7);
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }
/* Mobile fallback styles */
.video-background.mobile-fallback {
    background-image: url('image/video-mobile-fallback.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: black; /* optional fallback */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
  }
.video-background.mobile-fallback video {
    display: none !important;
}


/* Header and Navigation */
header {
    position: relative;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    height: 40px;
    z-index: 11;
}

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-family: 'Arial', cursive;
    font-weight: bold;
    font-style: italic;
    font-size: 24px;
    color: #FF8300;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-right: 25px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #FF8300;
}

.schedule-btn, .schedule-link {
    background-color: #FF8300;
    color: #ffffff;
    border: 5px solid #FF8300;
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.schedule-btn:hover, .schedule-link:hover {
    background-color: #FF8300;
    color: white;
}

/* Base styles for hamburger - hidden by default on desktop */
.hamburger {
    display: none; /* Hide hamburger by default (desktop view) */
    cursor: pointer;
    z-index: 1001;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 131, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.mobile-btn {
    display: none;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-logo {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
}

.hero-logo .sarkis {
    font-family: 'Arial', cursive;
    font-size: 130px;
    font-weight: bold;
    color: #FF8300;
    font-style: italic;
    display: inline-block;
    transform: rotate(-5deg);
    line-height: 1;
}

.hero-logo .wraps {
    font-family: 'Arial', cursive;
    font-size: 130px;
    font-weight: bold;
    color: #FF8300;
    font-style: italic;
    display: inline-block;
    transform: rotate(-5deg);
    line-height: 1;
}

.auto-styling {
    font-size: 24px;
    letter-spacing: 5px;
    color: white;
    font-weight: 300;
    margin-top: -10px;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.8);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    color: #FF8300;
}

/* Modified Carousel Layout for exactly 3 items */
.gallery-carousel {
    position: relative;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.gallery-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.gallery-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 30px;
    padding: 10px 0 30px;
    scroll-snap-type: x mandatory;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc((100% - 60px) / 3); /* Exactly 3 items with 30px gaps */
    position: relative;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    scroll-snap-align: start;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.service-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    text-align: center;
}

/* Carousel Navigation Arrows - Repositioned */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 3px solid #FF8300;
    color: #FF8300;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: #FF8300;
    color: white;
}

.prev-arrow {
    left: -80px; /* Moved outside the gallery-wrapper */
}

.next-arrow {
    right: -80px; /* Moved outside the gallery-wrapper */
}

.carousel-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-arrow i {
    font-size: 24px;
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: white;
    padding: 40px 20px;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('footer-texture.jpg');
    background-size: cover;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 100px;
    max-width: 300px;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.business-hours p,
.contact-info p {
    margin: 5px 0;
    font-size: 16px;
    line-height: 1.5;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #FF8300;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: #FF8300;
    transform: translateY(-3px);
}

.credentials img {
    height: 50px;
}
@supports (-webkit-touch-callout: none) {
    .video-background {
        position: absolute; /* Use absolute instead of fixed for iOS */
    }
    
    .video-background video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Responsive Design */
@media screen and (max-width: 1600px) {
    .gallery-item {
        height: 350px;
    }
}

@media screen and (max-width: 1400px) {
    .gallery-item {
        height: 320px;
    }
}

@media screen and (max-width: 1200px) {
    .gallery-item {
        flex: 0 0 calc(50% - 15px);
        min-width: calc((100% - 30px) / 2); /* Exactly 2 items with 30px gap */
        height: 300px;
    }
    
    .service-label {
        font-size: 20px;
        padding: 12px;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
    }
    
    .prev-arrow {
        left: -60px;
    }
    
    .next-arrow {
        right: -60px;
    }
}

@media screen and (max-width: 1024px) {
    .hero-logo .sarkis, 
    .hero-logo .wraps {
        font-size: 100px;
    }
    
    .auto-styling {
        font-size: 20px;
    }
}

@media screen and (max-width: 991px) {
    .gallery-carousel {
        width: 85%;
    }
    
    .prev-arrow {
        left: -50px;
    }
    
    .next-arrow {
        right: -50px;
    }
}

/* Media query for mobile view */
@media screen and (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    .hamburger {
        display: flex !important; /* Force display on mobile */
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .desktop-btn {
        display: none !important; /* Hide desktop button on mobile */
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        display: flex !important; /* Force display for proper transitions */
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        justify-content: center;
        align-items: center;
        padding-top: 50px;
        visibility: hidden; /* Hide but keep in DOM */
        opacity: 0;
    }
    
    .nav-menu.active {
        left: 0;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu li a {
        font-size: 20px;
    }
    
    .mobile-btn {
        display: block;
        margin-top: 20px;
    }
    
    .hero-logo .sarkis, 
    .hero-logo .wraps {
        font-size: 70px;
    }
    
    .auto-styling {
        font-size: 16px;
        letter-spacing: 3px;
    }
    
    .gallery-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .gallery-carousel {
        width: 80%;
    }
    
    .gallery-item {
        flex: 0 0 calc(100% - 0px);
        min-width: 100%; /* 1 full item */
        height: 260px;
    }
    
    .prev-arrow {
        left: -45px;
    }
    
    .next-arrow {
        right: -45px;
    }
    
    .service-label {
        font-size: 18px;
        padding: 10px;
    }
    
    .carousel-arrow i {
        font-size: 18px;
    }
    
    /* Footer responsive styles */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Media query for desktop view */
@media screen and (min-width: 769px) {
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background-color: transparent;
        width: auto;
        height: auto;
        padding-top: 0;
        visibility: visible;
        opacity: 1;
    }
    
    .mobile-btn {
        display: none;
    }
    
    .desktop-btn {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    .gallery-carousel {
        width: 90%;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .prev-arrow {
        left: -35px;
    }
    
    .next-arrow {
        right: -35px;
    }
}

@media screen and (max-width: 480px) {
    .hero-logo .sarkis, 
    .hero-logo .wraps {
        font-size: 50px;
    }
    
    .auto-styling {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .gallery-title {
        font-size: 24px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .service-label {
        font-size: 16px;
        padding: 8px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow i {
        font-size: 16px;
    }
    
    /* Footer small screen adjustments */
    .footer {
        padding: 30px 15px;
    }
    
    .business-hours p,
    .contact-info p {
        font-size: 14px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .credentials img {
        height: 40px;
    }
}