/* ================= GLOBAL & LAYOUT ================= */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.headline {
    text-align: center;
    color: green;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* space between logo and text */
}

.logo {
    height: 60px;   /* Adjust size as needed */
    width: auto;
}


/* ================= NAVBAR ================= */
.topnav {
    overflow: hidden;
    background-color: #90EE90;
}

.topnav a {
    float: left;
    display: block;
    color: #333;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #006400;
    color: white;
}

.topnav a.active {
    background-color: #4CAF50;
    color: white;
}

.topnav .icon {
    display: none;
}
/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #eef5f3;
    color: #333;
}

/* Header */
header {
    background-color: #1f8a70;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

header h1 {
    margin-bottom: 10px;
}

header p {
    font-size: 16px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* Row and Columns */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.column {
    flex: 1;
    min-width: 300px;
}

/* Image Column */
.image-column img {
    width: 60%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.image-column img:hover {
    transform: scale(1.03);
}

/* Text Column */
.text-column h2 {
    color: #1f8a70;
    margin-bottom: 15px;
}

.text-column p {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Visit Website Button */
.btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #1f8a70;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #145f4b;
    transform: translateY(-2px);
}

/* Cards inside Text Column */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.card h3 {
    color: #1f8a70;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}
/* ================= FOOTER ================= */

footer {
    background-color: #A498F0;
    padding: 15px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
}

.footer-col {
    width: 200px;
    min-width: 150px;
    box-sizing: border-box;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
}

/* Pink Underline */
.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    width: 50px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 24px;
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    color: #e91e63;
}

/* ================= RESPONSIVE ================= */

@media screen and (max-width: 768px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 600px) {
    .footer-col {
        width: 100%;
    }
}
