/* Connect the other CSS files */
@import url("about.css");
@import url("services.css");
@import url("contact.css");
@import url("mobile.css") screen and (max-width: 600px);

/* Global styles */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.content {
    padding: 0;
    margin: 0;
}

section {
    min-height: 300px;
    padding-top: 30px;
}

/* Navigation bar */
.navbar {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: black;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 200px;
    height: auto;
    display: block;
}

.shop-name {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a,
.nav-links a:visited {
    padding: 10px;
    color: whitesmoke;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
}

.nav-links a:hover {
    color: black;
    background-color: white;
    border-radius: 5px;
}

/* Hide hamburger button on computers */
.menu-button {
    display: none;
}

/* Home section */
#home {
    padding: 40px 20px;
}

.hero {
    min-height: calc(100vh - 65px);
    box-sizing: border-box;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.72)
        ),
        url("../images/wallpaper.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    padding: 60px 12%;
}

.hero-content {
    max-width: 600px;
    color: white;
}

.hero-label {
    padding:10px;
    color: #ff0000;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    padding:10px;
    color: white;
    font-size: 65px;
    line-height: 0.95;
    margin: 0 0 25px;
}

.hero h1 span {
    color: #ff0000;
}

.hero-description {
    padding:10px;
    color: #cccccc;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons a {
    padding: 18px 30px;
    font-weight: bold;
    text-decoration: none;
}

.service-button {
    color: black;
    background-color: #ff0000;
}

.mission-button {
    color: white;
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid #777777;
}

.service-button:hover {
    background-color: red;
}

.mission-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
}