/* Font Definitions */
@font-face {
    font-family: 'HelveticaNeueBlack';
    src: url('font/HelveticaNeueBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueBlackItalic';
    src: url('font/HelveticaNeueBlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'HelveticaNeueBold';
    src: url('font/HelveticaNeueBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueBoldItalic';
    src: url('font/HelveticaNeueBoldItalic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'HelveticaNeueHeavy';
    src: url('font/HelveticaNeueHeavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueHeavyItalic';
    src: url('font/HelveticaNeueHeavyItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'HelveticaNeueItalic';
    src: url('font/HelveticaNeueItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'HelveticaNeueLight';
    src: url('font/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueLightItalic';
    src: url('font/HelveticaNeueLightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'HelveticaNeueMedium';
    src: url('font/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueMediumItalic';
    src: url('font/HelveticaNeueMediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'HelveticaNeueRoman';
    src: url('font/HelveticaNeueRoman.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueThin';
    src: url('font/HelveticaNeueThin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueThinItalic';
    src: url('font/HelveticaNeueThinItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'HelveticaNeueUltraLight';
    src: url('font/HelveticaNeueUltraLight.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueUltraLightItalic';
    src: url('font/HelveticaNeueUltraLightItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

/* General Styling */
body {
    font-family: 'HelveticaNeue', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #f4f4f4;
}

/* General Fix for Scrolling */
html, body {
    height: 100%; /* Ensure the body takes up the full height */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    overflow-y: auto; /* Allow vertical scrolling */
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
    transition: all 0.5s ease;
}

.menu-overlay.active {
    display: flex;
}

.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.menu-content ul li {
    margin: 10px 0;
}

.menu-content ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.menu-content ul li a:hover {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: #fff;
    border: 2px solid #ff7e5f;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-buttons {
    margin-top: 30px;
}

.menu-buttons .btn-primary {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-buttons .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.menu-buttons .btn-secondary:hover {
    background: #fff;
    color: #333;
    transform: scale(1.05);
}

/* Main Content */
main {
    padding: 20px;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
}

.get-help {
    margin-bottom: 20px;
    width: 60%; /* Adjust width for alignment */
}

.get-help h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.search-bar {
    display: flex;
    gap: 10px;
}

.search-bar input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.search-bar button {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.our-team, .faq {
    margin-bottom: 20px;
    width: 60%; /* Adjust width for alignment */
}

.our-team h2, .faq h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.faq-item button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background: #f4f4f4;
    border: 1px solid #ddd;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
}

.faq-answer {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-left: 3px solid #ddd;
    font-size: 0.9rem;
    color: #333;
}

/* Contact Us Section */
.contact-us {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    width: 60%; /* Adjust width for alignment */
}

/* Responsive Design */

/* Fix for Responsive Layouts */
@media (max-width: 1024px) {
    body {
        overflow-y: auto; /* Ensure vertical scrolling is enabled */
    }

    main {
        overflow: visible; /* Ensure content inside main is scrollable */
    }
}

@media (max-width: 1024px) {
    main {
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center align the content */
        padding: 10px;
    }

    .get-help, .our-team, .faq, .contact-us {
        width: 90%; /* Reduce width for smaller screens */
    }

    .search-bar {
        flex-direction: column; /* Stack input and button vertically */
        gap: 5px;
    }

    .search-bar input, .search-bar button {
        width: 100%; /* Full width for input and button */
    }

    .faq-item button {
        font-size: 0.9rem; /* Reduce font size for smaller screens */
    }

    .faq-answer {
        font-size: 0.8rem; /* Reduce font size for answers */
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto; /* Ensure vertical scrolling is enabled */
    }

    .menu-overlay {
        height: auto; /* Ensure the menu overlay doesn't restrict scrolling */
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px; /* Reduce padding for the header */
    }

    .navbar .logo {
        font-size: 1.5rem; /* Reduce logo font size */
    }

    .menu-content ul li a {
        font-size: 1rem; /* Reduce font size for menu links */
    }

    .contact-us {
        padding: 15px; /* Reduce padding for the contact section */
        font-size: 0.9rem; /* Reduce font size */
    }

    .contact-icons img {
        width: 50px; /* Adjust icon size */
        height: auto;
    }

    .store-locator h3 {
        font-size: 1.2rem; /* Adjust font size for store locator */
    }
}

@media (max-width: 480px) {
    body {
        overflow-y: auto; /* Ensure vertical scrolling is enabled */
    }

    .contact-us {
        margin-bottom: 20px; /* Add space at the bottom for better scrolling */
    }
}

@media (max-width: 480px) {
    .navbar .logo {
        font-size: 1.2rem; /* Further reduce logo font size */
    }

    .menu-content ul li a {
        font-size: 0.9rem; /* Further reduce font size for menu links */
    }

    .get-help h1, .our-team h2, .faq h2 {
        font-size: 1.2rem; /* Reduce heading font size */
    }

    .faq-item button {
        font-size: 0.8rem; /* Further reduce font size for FAQ buttons */
    }

    .contact-us {
        font-size: 0.8rem; /* Further reduce font size for contact section */
    }

    .contact-icons img {
        width: 40px; /* Further adjust icon size */
    }

    .store-locator h3 {
        font-size: 1rem; /* Further adjust font size for store locator */
    }
}
