body {
    font-family: 'Roboto', 'Playfair Display', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF4EA;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    background-color: #fff;
    border-bottom: 2px solid #f1f1f1;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
}

.intro {
    background: url('path_to_background_image.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    position: relative;
}

.intro h1 {
    font-size: 3em;
    margin: 0;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    animation: typing 5s steps(30, end) infinite, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    0% {
        width: 0;
    }

    60% {
        width: 100%;
    }

    70% {
        width: 100%;
    }

    80%,
    100% {
        width: 0;
    }
}

@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: black;
    }
}

.intro p {
    font-size: 1.2em;
    margin-top: 20px;
}

.learn-more {
    margin-top: 40px;
    font-size: 1.2em;
    color: black;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease-in-out 1;
}

.learn-more i {
    margin-top: 10px;
    font-size: 2em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

section {
    margin: 50px 0;
    border-radius: 10px;
}

.about {
    background-color: #fff;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: row;
}

.about-content {
    flex: 1;
}

.about h2 {
    font-size: 2em;
    margin-bottom: 20px;
    width: 100%;
}

.about p {
    font-size: 1.1em;
    color: #555;
    margin: 5px 0;
}

.about .contact-info {
    margin-top: 20px;
}

.about .social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.about .social-icons a {
    color: #333;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.about .social-icons a:hover {
    color: #007bff;
}

.about img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin-left: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.grid-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.grid-item h3 {
    margin-top: 0;
    font-size: 1.6em;
    color: #333;
}

.grid-item p {
    margin: 5px 0;
    color: #555;
}

.grid-item a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #fff;
    color: #007bff;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #007bff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.grid-item a:hover {
    background-color: #007bff;
    color: #fff;
}

.section-title {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: left;
    font-weight: bold;
}

.contact-info h3 {
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: #FFF4EA;
    width: 100%;
}

footer a {
    color: #FFF4EA;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
}

footer i {
    margin-right: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon {
    color: #ffcc00;
    margin-right: 10px;
}

.item-header {
    font-weight: bold;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.item-subheader {
    font-style: italic;
    color: #777;
    margin-bottom: 10px;
}

.item-date {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
}

.item-location {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 10px;
}

.item-description {
    font-size: 1em;
    color: #555;
}

.contact-info {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about img {
        margin: 20px 0 0 0;
        width: 100%;
        max-width: 300px;
    }

    .grid-section {
        grid-template-columns: 1fr;
    }

    .intro h1 {
        font-size: 2em;
    }

    .intro p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .intro h1 {
        font-size: 2.1em;
    }

    .intro p {
        font-size: 1.1em;
    }

    .learn-more {
        font-size: 1em;
    }

    .learn-more i {
        font-size: 1.5em;
    }

    .about h2 {
        font-size: 1.5em;
    }

    .about p {
        font-size: 1em;
    }

    .grid-item h3 {
        font-size: 1.4em;
    }

    .grid-item p {
        font-size: 0.9em;
    }
}
