/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    color: #333;
    padding-top: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Header Styling */
header {
    background-color: #080a0b;
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Logo and Title Container */
.logo-container {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 100px;
    margin-right: 10px;
    max-width: 100px;
}

header h1 {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
}

/* Navigation Styling */
header nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    margin: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
    font-style: normal;
    padding: 10px 15px;
    border-radius: 5px;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #e14a0f;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hamburger Menu (Hidden by Default) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
}

/* Home Page Video Section */
.home-video {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.home-video video {
    max-width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

.home-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-left: 35%;
    margin-top: 1%;
}

img:hover {
    transform: scale(1.05);
}

.home-text-heading {
    text-align: center;
}

#matchmaking {
    padding: 50px;
    background-color: #090a0a;
    color: antiquewhite;
    text-align: center;
    overflow: visible;
}

#matchmaking h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
}

#matchmaking h2 {
    font-size: 100px;
    font-weight: bold;
    margin-bottom: 20px;
}

#matchmaking p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Triangle Alignment for Features */
.triangle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.triangle-item:nth-child(1) { align-self: flex-start; }
.triangle-item:nth-child(2) { align-self: center; }
.triangle-item:nth-child(3) { align-self: flex-end; }

.triangle-item {
    width: 80%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.triangle-item h3 {
    font-size: 24px;
    color: #F88158;
}

.triangle-item p {
    font-size: 18px;
    color: antiquewhite;
}

.cta-button {
    display: inline-block;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 12px 25px;
    font-size: 18px;
    background: linear-gradient(135deg, #FBBBA5, #F88158);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #000000;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Welcome Text Section */
.welcome-text {
    text-align: center;
    color: blueviolet;
    margin: 30px 20px;
    font-weight: bolder;
}

.home-text {
    color: whitesmoke;
    text-align: center;
    margin-top: 0%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-left: 10%;
    margin-right: 10%;
    text-align: justify;
}

/* Contact Section */
.contact-container {
    background-color: #070909;
    padding: 40px;
    margin: 50px auto;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-container h2 {
    font-size: 32px;
    color: #FF3C3C;
    margin-bottom: 10px;
}

.contact-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    background-color: #f8f8f8;
    color: black;
}

.contact-form button {
    background: linear-gradient(135deg, #FF3C3C, #FF8A65);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #FF8A65, #FF3C3C);
}

.contact-info {
    background-color: rgb(6, 5, 5);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 16px;
    margin: 5px 0;
}

.contact-info i {
    color: #FF8A65;
    margin-right: 8px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    font-size: 24px;
    color: white;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #FF8A65;
}

.about-section {
    padding: 4rem 2rem;
    background-color: transparent;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.about-section .about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.about-section h3 {
    font-size: 2.5rem;
    color: #0e2d56;
    margin-bottom: 1.5rem;
    text-align: left;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.about-section h3 {
    font-size: 2rem;
    color: #ca4a1c;
    margin-top: 2rem;
    text-align: left;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.about-section p {
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-section strong {
    color: #0e2d56;
}

/* Footer */
footer {
    background: #060809;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    margin-top: auto;
}

/* Team Section */
.team {
    background-color: #050707;
    padding: 4rem 2rem;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.team h2 {
    font-size: 2.5rem;
    color: #eaf6f2;
    margin-bottom: 2rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.team-facts {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-facts p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-facts h3 {
    font-size: 1.8rem;
    color: #0e2d56;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.team-facts ul {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0;
}

.team-facts ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
}

.team-facts ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: #50C878;
}

.team-facts ul li strong {
    color: #0e2d56;
    font-weight: bold;
}

.team-facts ul li:hover {
    background-color: #eaf6f2;
    border-radius: 5px;
    padding-left: 35px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hamburger Menu for Mobile */
    .hamburger {
        display: flex;
    }

    header nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #080a0b;
    }

    header nav ul.active {
        display: flex;
    }

    header nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    /* Adjust Home Section for Mobile */
    .home-video video {
        height: 300px;
    }

    .home-image img {
        margin-left: 0;
        max-width: 100%;
    }

    #matchmaking h1 {
        font-size: 40px;
    }

    #matchmaking h2 {
        font-size: 60px;
    }

    #matchmaking p {
        font-size: 16px;
    }

    .triangle-container {
        flex-direction: column;
    }

    .triangle-item {
        width: 100%;
    }

    .contact-container {
        padding: 20px;
    }

    .about-section {
        padding: 2rem 1rem;
    }

    .about-section h3 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .team {
        padding: 2rem 1rem;
    }

    .team-facts {
        padding: 1rem;
    }

    .team-facts h3 {
        font-size: 1.5rem;
    }

    .team-facts ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 24px;
    }

    .home-video video {
        height: 200px;
    }

    #matchmaking h1 {
        font-size: 30px;
    }

    #matchmaking h2 {
        font-size: 40px;
    }

    #matchmaking p {
        font-size: 14px;
    }

    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .contact-container h2 {
        font-size: 24px;
    }

    .contact-container p {
        font-size: 14px;
    }

    .about-section h3 {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }

    .team h2 {
        font-size: 2rem;
    }

    .team-facts h3 {
        font-size: 1.2rem;
    }

    .team-facts ul li {
        font-size: 0.9rem;
    }
}