* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(246, 221, 189);
    color: rgb(60, 40, 20);

    font-family: "Work Sans", sans-serif;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;

    padding: 25px;

    background-color: rgb(233, 200, 158);

    font-size: 1.1rem;
    font-weight: 500;
}

.nav a {
    transition: 0.2s ease;
}

.nav a:hover {
    color: rgb(185, 110, 60);
    transform: translateY(-2px);
}

.hero {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;

    padding: 80px 40px;

    flex-wrap: wrap;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-family: "Fjalla One", sans-serif;

    font-size: 4rem;

    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.6;

    margin-bottom: 30px;
}

.button {
    display: inline-block;

    background-color: rgb(230, 160, 70);
    color: white;

    padding: 15px 35px;

    border-radius: 12px;

    font-weight: 600;

    transition: 0.2s ease;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.button:hover {
    background-color: rgb(210, 140, 50);

    transform: translateY(-3px);
}

.hero-image img {
    width: 350px;

    max-width: 100%;

    border-radius: 16px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.announcement-section {
    background-color: rgb(239, 188, 116);

    padding: 80px 20px;

    display: flex;
    justify-content: center;
}

.announcement {
    max-width: 800px;

    text-align: center;
}

.announcement h2 {
    font-size: 2rem;

    margin-bottom: 20px;
}

.announcement p {
    font-size: 1.1rem;

    line-height: 1.7;
}

footer {
    background-color: rgb(252, 202, 138);

    padding: 30px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 1200px;

    margin: auto;

    flex-wrap: wrap;

    gap: 20px;
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    transition: 0.2s ease;
}

.footer-nav a:hover {
    color: rgb(185, 110, 60);
}

@media (max-width: 768px) {

    .hero {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .footer-content {
        justify-content: center;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1.1rem;
}

.featured-works {
    padding: 100px 40px;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;

    max-width: 1200px;
    margin: auto;
}

.work-card {
    background-color: rgba(255, 255, 255, 0.35);

    padding: 35px;

    border-radius: 18px;

    backdrop-filter: blur(4px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

    transition: 0.25s ease;
}

.work-card:hover {
    transform: translateY(-8px);
}

.work-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.work-card p {
    line-height: 1.7;
}

.quote-banner {
    background: linear-gradient(135deg,
            rgb(226, 170, 102),
            rgb(201, 140, 71));

    padding: 100px 20px;

    color: white;

    text-align: center;
}

.quote-content {
    max-width: 900px;
    margin: auto;
}

.quote-content h2 {
    font-size: 2.3rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.quote-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.timeline-section {
    padding: 100px 40px;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 30px;

    flex-wrap: wrap;

    max-width: 1200px;
    margin: auto;
}

.timeline-item {
    background-color: rgba(255, 255, 255, 0.4);

    width: 220px;

    padding: 30px;

    border-radius: 18px;

    text-align: center;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);

    transition: 0.25s ease;
}

.timeline-item:hover {
    transform: scale(1.05);
}

.timeline-item span {
    display: block;

    font-size: 2rem;
    font-weight: bold;

    margin-bottom: 15px;

    color: rgb(168, 98, 32);
}

.timeline-item p {
    line-height: 1.6;
}

.bio-hero {
    height: 45vh;
    background: linear-gradient(135deg, rgb(233, 200, 158), rgb(210, 150, 90));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.bio-overlay h1 {
    font-size: 3.5rem;
    font-family: "Fjalla One", sans-serif;
    margin-bottom: 10px;
}

.bio-overlay p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.bio-section {
    padding: 90px 40px;
}

.bio-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.bio-image img {
    width: 350px;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bio-text {
    flex: 1;
    min-width: 280px;
}

.bio-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.bio-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.bio-highlight {
    background-color: rgb(245, 187, 111);
    padding: 90px 20px;
    text-align: center;
}

.highlight-content {
    max-width: 800px;
    margin: auto;
}

.highlight-content h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.highlight-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.bio-facts {
    padding: 90px 40px;
}

.facts-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.fact-card {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.25s ease;
}

.fact-card:hover {
    transform: translateY(-6px);
}

.fact-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: rgb(160, 90, 30);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .bio-overlay h1 {
        font-size: 2.5rem;
    }

    .bio-container {
        text-align: center;
        justify-content: center;
    }

    .bio-text {
        text-align: left;
    }
}

.quotes-hero {
    height: 40vh;
    background: linear-gradient(135deg, rgb(233, 200, 158), rgb(210, 150, 90));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.quotes-overlay h1 {
    font-size: 3.5rem;
    font-family: "Fjalla One", sans-serif;
    margin-bottom: 10px;
}

.quotes-overlay p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.quotes-grid-section {
    padding: 100px 40px;
}

.quotes-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.quote-card {
    background-color: rgba(255, 255, 255, 0.45);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quote-card:hover {
    transform: translateY(-6px);
}

.quote-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

.legacy-hero {
    height: 40vh;
    background: linear-gradient(135deg, rgb(233, 200, 158), rgb(210, 150, 90));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.legacy-overlay h1 {
    font-size: 3.5rem;
    font-family: "Fjalla One", sans-serif;
    margin-bottom: 10px;
}

.legacy-overlay p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.legacy-intro {
    padding: 90px 40px;
    text-align: center;
}

.legacy-container {
    max-width: 900px;
    margin: auto;
}

.legacy-container h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.legacy-container p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.legacy-grid-section {
    padding: 90px 40px;
}

.legacy-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.legacy-card {
    background-color: rgba(255, 255, 255, 0.45);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.25s ease;
}

.legacy-card:hover {
    transform: translateY(-6px);
}

.legacy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.legacy-card p {
    line-height: 1.7;
}

.legacy-quote {
    background: linear-gradient(135deg, rgb(226, 170, 102), rgb(201, 140, 71));
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.legacy-quote-box {
    max-width: 900px;
    margin: auto;
}

.legacy-quote-box h2 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.legacy-quote-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .legacy-grid {
        grid-template-columns: 1fr;
    }

    .legacy-overlay h1 {
        font-size: 2.5rem;
    }
}

.works-hero {
    height: 40vh;
    background: linear-gradient(135deg, rgb(233, 200, 158), rgb(210, 150, 90));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.works-overlay h1 {
    font-size: 3.5rem;
    font-family: "Fjalla One", sans-serif;
    margin-bottom: 10px;
}

.works-overlay p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.works-intro {
    padding: 90px 40px;
    text-align: center;
}

.works-container {
    max-width: 900px;
    margin: auto;
}

.works-container h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.works-container p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.works-grid-section {
    padding: 90px 40px;
}

.works-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.work-card {
    background-color: rgba(255, 255, 255, 0.45);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.25s ease;
}

.work-card:hover {
    transform: translateY(-6px);
}

.work-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.work-card p {
    line-height: 1.7;
}

.works-quote {
    background: linear-gradient(135deg, rgb(226, 170, 102), rgb(201, 140, 71));
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.works-quote-box {
    max-width: 900px;
    margin: auto;
}

.works-quote-box h2 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.works-quote-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .works-grid {
        grid-template-columns: 1fr;
    }

    .works-overlay h1 {
        font-size: 2.5rem;
    }
}