/*
Theme Name: Astra Child
Template: astra
*/

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO */
.hero {
    height: 100vh;
    background: #000; /* fallback */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1606813907291-d86efa9b94db') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    opacity: 0.9;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #00bcd4;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #0097a7;
    transform: scale(1.05);
}

/* SERVICES */
.services {
    padding: 80px 20px;
    text-align: center;
}

.services h2 {
    font-size: 40px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 220px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    background: #e0f7fa;
}

/* ICON */
.icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* ABOUT */
.about {
    padding: 80px 20px;
    text-align: center;
    background: #fafafa;
}

/* CONTACT */
.contact {
    padding: 80px 20px;
    text-align: center;
    background: #00bcd4;
    color: white;
}
/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent !important;
    transition: 0.3s;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: white;
}

.nav a {
    margin-left: 30px;
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.nav a:hover {
    color: #00bcd4;
}

/* LOGO */
.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* NAV */
.nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.nav a:hover {
    color: #00bcd4;
}
.hero {
    margin-top: -80px;
}
.site-header {
    background: transparent !important;
}
.hero {
    margin-top: 0;
    padding-top: 120px;
}
.logo,
.nav a {
    color: white !important;
}
