body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    h1{
        font-size: 50px;
    }
}
section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
}
button{
    /* margin-top: 10px; */
    width: 100px;
    height: 30px;
    border-radius: 10px;
    border: none;
    background-color: rgba(108, 92, 92, 0.203);
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-size: 10pt;
    transition: background-color 1s ease, height 1s ease, width 1s ease, font-size 1s ease;
}

button:hover{
    background-color: rgba(202, 113, 23, 0.998);
    width: 150px;
    height: 45px;
    font-size: 15pt;
}
a{
    text-decoration: none;
    color: rgb(0, 0, 0);
}


.nav-parent {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 20px;
    background-color: #2c3e50;
    padding: 12px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-left {
    grid-column: 1;
}
/* Logo styling */
.nav-left img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-right {
    grid-column: 2;
    justify-self: end;
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #fee4a1;
}


.page-section{
    height: 100vh;
    display: grid;
}
#landing{
    background-color: #fee4a1;
    place-items: center;
    text-align: center;
}
#landing h1 {
    font-size: 64px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #333;
}
#landing p {
    font-size: 22px;
    margin: 6px 0;
    color: #555;
    line-height: 1.6;
}
#landing a {
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}
#landing a:hover {
    color: #ca7117;
}
#about{

    background-color: #bcdeae;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
    padding: 0 40px;
    height: 100%;
}

/* Left column: image with 50px top/bottom margin */
.about-left {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-left img {
    width: 100%;
    max-width: 500px;
    height: 100%;
    margin: 50px 0; /* 50px top & bottom as requested */
    object-fit: cover;
    display: block;
}

/* Right column: nested grid with two rows (text top, form bottom) */
.about-right {
    grid-column: 2;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 20px;
    align-items: start;
    padding: 50px 0;
}
.about-right-top {
    padding-right: 20px;
}
.about-right-bottom {
    padding-right: 20px;
}

/* Simple form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
}
.contact-form input,
.contact-form textarea {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}
.contact-form button {
    width: 120px;
    padding: 8px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: #6c5bff;
    color: #fff;
}

/* Responsive: stack columns on small screens */
@media (max-width: 800px) {
    #about {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .about-left,
    .about-right {
        grid-column: auto;
    }
    .about-right {
        padding: 20px 0;
    }
}

/* Footer styles */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 60px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #fee4a1;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    margin: 8px 0;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fee4a1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    margin: 0;
}

@media (max-width: 600px) {
    .footer {
        padding: 30px 20px 15px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}