/* Shared site styles */

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333333;
    padding: 20px;
    text-align: center;
}

.logo {
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
    color: #39FF14;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #00BFFF;
    font-weight: bold;
}

section {
    padding: 50px 20px;
}

.hero {
    background-color: #333333;
    text-align: center;
    color: #39FF14;
}

h1 {
    font-size: 3em;
}

p {
    font-size: 1.2em;
}

#services {
    background-color: #000000;
}

.service-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.service {
    background-color: #333333;
    padding: 20px;
    width: 30%;
    text-align: center;
    border-radius: 8px;
}

.service h3 {
    color: #39FF14;
}

.service p {
    color: #ffffff;
}

footer {
    background-color: #333333;
    text-align: center;
    padding: 10px;
    color: #ffffff;
}

.hero {
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

.hero-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f98cb9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

.hero-button:hover {
    background-color: #e277a4;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.portfolio-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
