/* =========================
   BASIC RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background-color: #f5f1e8;
    color: #171717;
    line-height: 1.6;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

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

    padding: 25px 50px;

    background-color: rgba(245, 241, 232, 0.95);

    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand span {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}
nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #171717;
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    opacity: 0.5;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 20px 80px;

    background-color: #e8dfcf;
}

.hero-content {
    max-width: 900px;
}

.small-text {
    font-family: Arial, sans-serif;

    font-size: 12px;

    letter-spacing: 4px;

    margin-bottom: 20px;

    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(60px, 12vw, 150px);

    line-height: 0.9;

    letter-spacing: -5px;

    margin-bottom: 30px;
}

.tagline {
    font-size: 20px;

    max-width: 600px;

    margin: 0 auto 40px;
}

.quotes {
    padding: 140px 20px;

    background-color: #f5f1e8;

    text-align: center;
}

.quote-slider {
    max-width: 800px;

    margin: auto;
}

.quote {
    display: none;

    min-height: 250px;

    flex-direction: column;

    justify-content: center;

    align-items: center;
}

.quote.active {
    display: flex;
}


/* TODAY / YESTERDAY */

.quote-label {
    font-family: Arial, sans-serif;

    font-size: 11px;

    letter-spacing: 4px;

    margin-bottom: 35px;
}


/* Quote */

.quote-text {
    font-size: 32px;

    font-style: italic;

    line-height: 1.5;

    max-width: 700px;

    margin-bottom: 25px;
}


/* Author */

.quote span {
    font-size: 15px;
}


/* Dots */

.dots {
    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 10px;
}

.dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background-color: #b8b0a2;

    cursor: pointer;
}

.dot.active {
    background-color: #171717;
}
/* =========================
   BUTTON
========================= */

.button {
    display: inline-block;

    padding: 14px 30px;

    background-color: #171717;

    color: white;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 1px;

    transition: 0.3s;
}

.button:hover {
    background-color: #555;
}


/* =========================
   ABOUT
========================= */

.about {
    padding: 150px 20px;
}

.section-content {
    max-width: 800px;

    margin: auto;
}

.about h2,
.featured h2,
.contact h2 {
    font-size: 60px;

    font-weight: normal;

    margin-bottom: 30px;
}

.about p:not(.small-text) {
    font-size: 20px;

    margin-bottom: 20px;
}


/* =========================
   FEATURED
========================= */

.featured {
    padding: 120px 50px;

    background-color: #171717;

    color: white;
}

.featured h2 {
    margin-bottom: 60px;
}

.cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    max-width: 1200px;

    margin: auto;
}

.card {
    background-color: #252525;

    padding-bottom: 30px;
}

.card-image {
    height: 350px;

    background-color: #c8b99c;

    margin-bottom: 25px;
}

.card h3,
.card p {
    margin-left: 25px;

    margin-right: 25px;
}

.card h3 {
    font-size: 25px;

    margin-bottom: 10px;
}

.card p {
    color: #cfcfcf;
}


/* =========================
   CONTACT
========================= */

.contact {
    padding: 150px 20px;

    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact > p:not(.small-text) {
    font-size: 20px;

    margin-bottom: 35px;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 30px;

    text-align: center;

    background-color: #111;

    color: #aaa;

    font-family: Arial, sans-serif;

    font-size: 13px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .navbar {
        padding: 20px;

        flex-direction: column;

        gap: 15px;
    }

    nav {
        gap: 20px;
    }

    .hero h1 {
        font-size: 70px;

        letter-spacing: -3px;
    }

    .about h2,
    .featured h2,
    .contact h2 {
        font-size: 45px;
    }

    .featured {
        padding: 100px 20px;
    }

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

    .card-image {
        height: 300px;
    }
}
/* Login / Register Button */

.login-nav-button {
    display: inline-block;
    padding: 10px 18px;
    margin-left: 10px;

    background: #8b5e3c;
    color: #ffffff !important;

    border-radius: 25px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.login-nav-button:hover {
    background: #6f472d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
