@import url('../../inc/css/header.css');
@import url('../../inc/css/footer.css');

:root {
    --blue: #062c4a;
    --white: white;
    --black: #333;
}

h1 {
    font-size: clamp(2.1875rem, 1.0515rem + 2.3697vw, 3.125rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    line-height: normal;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.875rem, 0.739rem + 2.3697vw, 2.8125rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h3 {
    font-size: clamp(1.5rem, 1.0456rem + 0.9479vw, 1.875rem);
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

a {
    all: inherit
}

.yellow_btn {
    background: #b38b32;
    color: var(--white);
    padding: 18px 50px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;

    &:hover {
        background: #9a7429;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(179, 139, 50, 0.4);
        color: var(--white);
    }
}

.blue_btn {
    background: var(--blue);
    color: #fff;
    padding: 20px 40px;
    font-size: 32px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--blue);

    &:hover {
        background: #fff;
        color: #062c4a;
        border-color: #fff;
        transform: scale(1.05);
    }
}

p,
li {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 20px;
}

p:last-of-type {
    margin-bottom: 0;
}

ol,
ul {
    padding-left: 20px;
    margin-bottom: 0;
}

section,
.footer-main {
    padding: 100px 30px;

    @media (max-width: 1200px) {
        padding: 70px 30px;
    }

    @media (max-width: 767px) {
        padding: 50px 30px;
    }
}

img{
    max-width: 100%;
    height: auto;
}