html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 20px 60px rgba(60,40,20,0.08);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}


.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 28px;
    font-weight: bold;
    color: #3a2b22;
}

    .nav-logo img {
        width: 42px;
    }

    .nav-logo span {
        font-size: 20px;
    }

nav {
    display: flex;
    gap: 32px;
}

    nav a {
        text-decoration: none;
        color: #4b392f;
        font-weight: 600;
        transition: .3s;
    }

        nav a:hover {
            color: #9b673d;
        }

.footer {
    text-align: center;
    padding: 40px 20px;
    background: #3a2b22;
    color: white;
}

    .footer h3 {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .footer p {
        opacity: .8;
        margin: 8px 0;
    }

body {
    margin: 0;
    font-family: Arial;
    background: radial-gradient(circle at top left, #f4ede4 0%, #ece4da 40%, #e4dbd0 100%);
    color: #3a2b22;
}

        .hero {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px;
        }

        .logo {
            width: 170px;
            margin-bottom: 20px;
        }

.box {
    max-width: 900px;
    width: 100%;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

h1 {
    font-size: 82px;
    font-weight: 700;
    margin-bottom: 20px;
}

        p {
            font-size: 22px;
            line-height: 1.7;
            color: #6b5648;
        }

        .btn {
            display: inline-block;
            margin-top: 30px;
            padding: 18px 34px;
            background: #9b673d;
            color: white;
            border-radius: 14px;
            text-decoration: none;
            font-weight: bold;
        }

        .btn:hover {
    background: #8a6038;
    transform: translateY(-3px);
}

        @@media(max-width:768px) {

            h1 {
                font-size: 42px;
            }

            p {
                font-size: 18px;
            }

        }

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

@media(max-width: 768px) {

    .navbar {
        padding: 10px 0;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .nav-logo img {
        width: 34px;
    }

    .nav-logo span {
        font-size: 18px;
    }

    .nav-menu {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

        .nav-menu a {
            font-size: 14px;
        }

    .hero {
        padding: 120px 16px 40px;
        min-height: auto;
    }

    .box {
        width: 100%;
        padding: 32px 20px;
        border-radius: 24px;
    }

    .logo {
        width: 120px;
        margin-bottom: 14px;
    }

    h1 {
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .btn {
        width: auto;
        padding: 16px 28px;
        font-size: 15px;
        border-radius: 14px;
    }

    .footer {
        padding: 40px 20px;
    }

        .footer h3 {
            font-size: 28px;
        }

        .footer p {
            font-size: 15px;
        }
}