.logo img {
    height: 75px;
    width: auto;
    display: block;
}

/* GENERAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
    scroll-behavior: smooth;
}

h1, h2 {
    margin: 0;
    font-weight: 700;
}

.section {
    max-width: 900px;
    padding: 60px 20px;
    margin: auto;
    text-align: center;
}

nav {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 20px;
    gap: 40px;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}


nav .logo {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s ease;
}

nav a:hover {
    color: #0077ff;
}

/* HERO */
.hero {
    background: linear-gradient(#00000070, #00000070),
                url('background.jpg') center center / cover no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 60px;
}

.profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 100px;
    border: 4px solid white;
    margin-bottom: 20px;
}

.hero-button {
    margin-top: 25px;
    padding: 12px 25px;
    background: #0077ff;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-button:hover {
    background: #0057cc;
}

/* GRID CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-weight: 600;
}

/* SERVICES */
.service-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    font-size: 18px;
    line-height: 2.2;
}

/* FOOTER */
footer {
    background: #eee;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.6s ease forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
