/* =========================
   GOOGLE FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Roboto:wght@400;500;700&display=swap');

/* =========================
   GLOBAL STYLES
========================= */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #f5f7fa;
    color: #222;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* =========================
   HEADER
========================= */
header {
    background: linear-gradient(90deg, #ff6a00, #ff9500);
    color: #fff;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative; /* fixes hero overlap */
}

/* Stylish Text Logo */
header .text-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}
header .text-logo span {
    color: #ffd700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* NAVIGATION */
nav {
    text-align: center;
    margin-top: 10px;
    flex: 1 1 100%;
}
nav a {
    color: #fff;
    margin: 0 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}
nav a:hover {
    color: #ffd700;
}
nav a::after {
    content: '';
    display: block;
    margin: auto;
    height: 3px;
    width: 0;
    background: #ffd700;
    transition: width .3s;
}
nav a:hover::after {
    width: 100%;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: url('atal.png') no-repeat center top;
    background-size: cover;
    color: white;
    padding: 100px 20px 80px 20px; /* extra top padding for header */
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 15px;
}

.hero p {
    font-size: 22px;
    font-weight: 500;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

.hero a.button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #ffd700;
    color: #ff6a00;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 2px 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.hero a.button:hover {
    transform: scale(1.05);
    box-shadow: 4px 6px 20px rgba(0,0,0,0.4);
}

/* =========================
   SECTIONS & CARDS
========================= */
.section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: #ff6a00;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

.card p, .card ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.highlight {
    font-weight: 700;
    color: #ff6a00;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* =========================
   VISITOR COUNTER
========================= */
.section.counter {
    text-align: center;
    background: linear-gradient(90deg, #ff6a00, #ff9500);
    color: #fff;
    padding: 50px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.section.counter p {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

/* =========================
   FOOTER
========================= */
footer {
    background: #1f1f1f;
    color: #bbb;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}

/* =========================
   MOBILE RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
    header {
        padding: 15px 10px;
        flex-direction: column;
        text-align: center;
    }
    nav a {
        display: inline-block;
        margin: 8px 10px;
        font-size: 16px;
    }
    .hero {
        padding: 80px 15px 60px 15px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
    .section {
        padding: 30px 15px;
    }
    .card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    .hero p {
        font-size: 16px;
    }
    nav a {
        display: block;
        margin: 6px 0;
    }
    .card h2 {
        font-size: 22px;
    }
    .section.counter p {
        font-size: 40px !important;
    }
}
