/* Typography */
body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url("../assets/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    color: white;
}

.main-heading {
    font-size: 48px;
    font-style: italic;
    font-weight: bold;
    text-decoration: underline;
    color: #012d36;
}

.paragraph {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
}

/* Buttons */
.button {
    width: 150px;
    height: 45px;
    border-width: 0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.button-green {
    background-color: #3f5ec6;
}

/* Cards */
.place-card {
    width: 300px;
    margin: 15px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.place-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.section-heading {
    font-size: 36px;
    font-weight: bold;
    color: #012d36;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    color: #432711;
}

.footer-text {
    margin: 0;
    font-size: 16px;
}

