* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: #f7fafc;
    color: #4a5568;
    line-height: 1.6;
    font-weight: bolder;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

/* HERO SECTION */
.hero{
    height:70vh;
    color:white;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    text-align:center;
    top:50%;
    transform:translateY(-50%);
    padding:20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
    color:#F7FAFC;
}

.hero p{
    font-size:20px;
    max-width:700px;
    margin:auto;
}

/* TOPBAR */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #2d3748;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.logo a {
    color: #f7fafc;
    font-size: 28px;
    font-weight: bold;
}

.navigation {
    display: flex;
    gap: 25px;
}

.navigation a {
    color: #cbd5e0;
    transition: 0.3s;
}

.navigation a:hover {
    color: #FFFFff;
}

/* CONTENT SECTIONS */
.container {
    width: 85%;
    margin: auto;
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: #1a202c;
    margin-bottom: 10px;
    font-size: 34px;
}

.section-title p {
    color: #4a5568;
}

.card-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.card {
    width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.card img {
    height: 200px;
    object-fit: cover;
}

.card h3 {
    color: #1a202c;
    padding: 15px 15px 5px;
}

.card p {
    padding: 0 15px 20px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery img {
    border-radius: 10px;
    height: 220px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ABOUT */
.center-text {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

/* FOOTER */
footer {
    background: #1a202c;
    color: #a0aec0;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .topbar {
        flex-direction: column;
        gap: 15px;
    }

    .navigation {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .card {
        width: 100%;
    }
}