/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background: #121212;
    box-sizing: border-box;
    width: 100vw; /* Ensures body is not wider than viewport */
    overflow-x: hidden; /* Disables horizontal scrolling */
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling across the page */
}

header {
    background-color: #222;
    padding: 15px 20px;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

header .logo .brand-name {
    color: #f39c12;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Sedgwick Ave", serif;
    transition: all 0.3s ease;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 165, 0, 0.6);
}

header .logo .brand-name:hover {
    color: #e67e22;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 165, 0, 1);
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 20%, #f39c12 80%);
    text-align: center;
    position: relative;
    color: #fff;
    flex-direction: column;
    width: 100%; /* Ensures the hero section does not overflow */
    box-sizing: border-box;
}

/* Clip Section Styling */
.clip-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: stretch;
    gap: 40px;
    overflow-x: hidden; /* Prevent horizontal scrolling in the clip-container */
}

.clip, .gear-list {
    flex: 1;
    background: rgba(0, 0, 0, 0.85); /* Darker background for consistency with gear-list */
    padding: 25px;
    border-radius: 10px; /* Rounded corners to match the gear-list */
    box-shadow: 5 4px 12px rgba(0, 0, 0, 0.7); /* Shadow effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.clip h1, .gear-list h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    font-family: "Sedgwick Ave", serif;
}

.clip-description, .gear-info p {
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.play-video {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    max-width: 100%;
}

/* Gear Section Styling */
.gear-info {
    text-align: center;
}

.gear-list ul {
    list-style-type: none;
    padding: 0;
    width: 100%;
    text-align: center;
}

.gear-list ul li {
    font-size: 1.4rem; /* Increased font size for readability */
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: #ccc; /* Lighter text color for contrast */
}

.gear-list ul li strong {
    color: #fff;
    margin-right: 10px;
}

.gear-list ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem; /* Slightly larger font size for links */
    font-weight: bold;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.9), rgba(255, 99, 71, 0.9)); /* Brighter gradient */
    padding: 7px 12px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.gear-list ul li a:hover {
    background: linear-gradient(135deg, #e67e22, #ff4500);
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 5px rgba(255, 165, 0, 0.6); /* Slightly lighter shadow */
}

/* Footer Section Styling */
footer {
    background: #222;
    padding: 20px;
    text-align: center;
    color: #ccc;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #f39c12;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .clip-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .clip, .gear-list {
        max-width: 100%;
    }

    .clip h1 {
        font-size: 2.5rem;
    }

    .clip-description {
        font-size: 1.2rem;
    }

    .gear-info h2 {
        font-size: 2rem;
    }

    .gear-list ul li {
        font-size: 1rem;
    }
}
