/* --- About Us Section Styles --- */
.about-us {
    position: relative;
    width: 100%;
    min-height: 80vh; /* පෙනුම ලස්සන වෙන්න උස වැඩි කර ඇත */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/contact.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Scroll කරන විට රූපය නිශ්චලව පවතින (Parallax) ලස්සන පෙනුමක් ලැබේ */
    padding: 60px 20px;
    text-align: center;
}


/* Content (අකුරු) */
.about-content {
    position: relative;
    z-index: 2; /* Overlay එකට උඩින් පෙන්වීමට */
    max-width: 900px; /* අකුරු පෙළ ලස්සනට මැද පෙනීමට */
}

.about-content h1 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 64px; /* Image එකේ විදියට විශාල අකුරු */
    color: #1a0b16;
    margin-bottom: 30px;
    font-weight: normal;
}

.about-content p {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 24px;
    line-height: 1.6;
    color: #1a0b16;
    word-spacing: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-content h1 {
        font-size: 40px;
    }
    
    .about-content p {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .about-us {
        min-height: 60vh;
    }
}

/* contact */
/* --- Contact Us Section --- */
.contact-us {
    padding: 80px 5%;
    background-color: #fcfbf9; /* ඉතා ලා beige පැහැයක් */
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 40px;
}

/* Info Side */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 20px;
    color: #b37e40; /* Golden accent from your logo */
    margin-top: 5px;
}

.info-item h3 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 22px;
    font-weight: normal;
    color: #1a0b16;
    margin-bottom: 5px;
}

.info-item p {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

/* Form Side */
.contact-form {
    flex: 1.2;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    background-color: #fafafa;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #1a0b16;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #1a0b16;
    color: #ffffff;
    border: none;
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #33162b;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .info-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
}