/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}



strong {
    color: #ffb600;
}

body {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #fff;
}

/* ===== NAVIGATION ===== */
header {
    position: fixed;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    width: 100px;
}

.logo img {
    width: 100%;
}

nav {
    display: flex;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #f39c12;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: url('img/hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    position: relative;
    animation: fadeUp 1.5s ease forwards;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    color: #ffb600;
}

.btn {
    padding: 12px 30px;
    background: linear-gradient(45deg, #f39c12, #d35400);
    border: none;
    border-radius: 30px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

/* ===== SECTIONS ===== */

.section_logo {
    width: 350px;
}

section {
    padding: 100px 10%;
    text-align: center;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #f39c12;
}

/* ===== ABOUT ===== */

#about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about h2 {
    margin-top: 50px;
}

.about p {
    max-width: 700px;
    margin: auto;
    opacity: 0.8;
    margin-bottom: 20px;
    font-weight: 100;
}

/* ===== SERVICES ===== */



.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    width: 350px;
    backdrop-filter: blur(15px);
    transition: 0.4s;
    animation: fadeUp 1.2s ease forwards;

}

.card h3 {
    color: #ffb600;
}

.p_message {
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.service_seperator {
    width: 80%;
    height: 2px;
    border: none;
    background-color: #ffb600;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

.service_extra {
    font-weight: 100;
    font-size: 12px;
    color: white;
    letter-spacing: 1px;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== CONTACT ===== */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input,
textarea {
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
}

button {
    padding: 15px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(45deg, #f39c12, #d35400);
    cursor: pointer;
    font-weight: bold;
}

.success {
    color: lightgreen;
}

.error {
    color: red;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 20px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }
}