/* Learn More Page - Enhanced Styles with Refined Layout and Interaction */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&display=swap');
:root {
    --pine-green: #2C4A3E;
    --light-pine: #3A6351;
    --earth-brown: #594B3F;
    --light-brown: #8B7355;
    --cream: #F4ECD6;
    --sage: #87A878;
    --gold: #BFA181;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    background: #2C4A3E;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='48' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.5'/%3E%3C/svg%3E");
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
}

.logo-text {
    color: white;
    font-size: 2.2rem;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--cream);
}


/* About Section */

.about-section {
    background-color: #fff;
    padding: 8rem 0 5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 0L95 85H5L50 0z' fill='none' stroke='rgba(58, 99, 81, 0.1)' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(58, 99, 81, 0.1)' stroke-width='0.5'/%3E%3C/svg%3E");
    animation: fadeIn 1s ease-in;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    padding: 3rem;
    background: linear-gradient(to bottom right, #ffffff, #f8f6f1);
    border: 3px solid #3A6351;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideIn 0.8s ease-in-out;
}

.about-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.about-flex img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-flex img:hover {
    transform: scale(1.03);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid #BFA181;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

h2 {
    font-size: 2.8rem;
    color: #2C4A3E;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeIn 1.2s ease;
}


/* Baroque Corners */

.baroque-border {
    position: relative;
}

.baroque-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    pointer-events: none;
    font-size: 22px;
    color: #BFA181;
}

.baroque-corner:nth-child(1) {
    top: -16px;
    left: -16px;
    content: "❦";
}

.baroque-corner:nth-child(2) {
    top: -16px;
    right: -16px;
    content: "❦";
}

.baroque-corner:nth-child(3) {
    bottom: -16px;
    left: -16px;
    content: "❦";
}

.baroque-corner:nth-child(4) {
    bottom: -16px;
    right: -16px;
    content: "❦";
}

.about-content ul {
    list-style: none;
    padding-left: 0;
}


/* Footer */

footer {
    background: #2C4A3E;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 2px solid #BFA181;
    border-bottom: 2px solid #BFA181;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}


/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 1.5rem;
        z-index: 1100;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--pine-green);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 1.5rem;
        z-index: 1000;
    }
    .nav-links.show {
        display: flex;
    }
    nav {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    .logo-img {
        width: 80px;
        height: 80px;
    }
    .logo-text {
        font-size: 1.4rem;
    }
    .nav-links a {
        font-size: 1rem;
    }
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.about-flex img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .about-flex {
        grid-template-columns: 1fr;
    }
    .about-flex img {
        max-width: 100%;
        margin: 0 auto;
    }
}