*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

:root{
    --color-primary: #7F1B0Cff;
    --color-success: #00bf8e;
    --color-warning: #f7c94b;
    --color-danger: #f75842;
    --color-danger-variant: rgba(247, 88, 66, 0.4);
    --color-white: #fff;
    --color-lighr: rgba(255, 255, 255, 0.7);
    --color-black: #000;
    --color-bg: #D7BD7Aff;
    --color-bg1: #D8AF6Bff;
    --color-bg2: #73110Aff;

    --container-width-lg: 76%;
    --container-width-md: 90%;
    --container-width-sm: 94%;

    --transition: all 400ms ease;
}

body{
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    color: var(--color-white);
    background:var(--color-bg2);
}

.container {
    width: var(--container-width-lg);
    margin: 0 auto;
}

section {
    padding: 6rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.2;
}

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4{
    font-size: 1.3rem;
}

a {
    color: var(--color-white);
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.btn {
    display: inline-block;
    background: var(--color-bg1);
    color: var(--color-white);
    padding: 1rem 2rem;
    border: 1px solid transparent;
    font-weight: 500;
    transition: var(--transition);
}

.btn:hover{
    background: transparent;
    color: var(--color-bg2);
    border-color: var(--color-white);
}

.btn-primary {
    background: var(--color-danger);
    color: var(--color-white);
}

/* ========== NAVBAR ========= */
nav {
    background: transparent;
    width: 100vw;
    height: 5rem;
    position: fixed;
    top: 0;
    z-index: 11;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    width: 130px; 
    height: auto;
    margin-right: 10px; 
}

.window-scroll {
    background: var(--color-primary);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.nav__container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav button {
    display: none;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nav__menu a {
    font-size: 0.9rem;
    transition: all 400ms ease;
}

.nav__menu a:hover {
    color: var(--color-bg2);
}


/* Reports Section */
.reports {
    padding: 4rem 0;
    background-color: var(--color-bg1);
}

.reports h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.report__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.report__article {
    background: var(--color-primary);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.report__article:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.report__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.report__article:hover .report__image img {
    transform: scale(1.1);
}

.report__info {
    padding: 1.5rem;
    text-align: center;
}

.report__info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.report__info p {
    font-size: 1rem;
    color: var(--color-light);
    margin-bottom: 1rem;
}

.report__info a {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--color-danger);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    text-transform: uppercase;
}

.report__info a:hover {
    background: var(--color-danger-variant);
    color: var(--color-black);
    text-decoration: none;
}



/* ========== FOOTER =========== */
footer {
    background: var(--color-bg2);
    padding-top: 5rem;
    font-size: 0.9rem;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
}

.footer__container > div h4 {
    margin-bottom: 1.2rem;
}

.footer__1 p {
    margin: 0 0 2rem; 
}

footer ul li {
    margin-bottom: 0.7rem;
}

fooer ul li a:hover {
    text-decoration: underline;
}

/* ========== NAVBAR ====== */
nav button {
    display: inline-block;
    background: transparent;
    font-size: 1.3rem;
    color: var(--color-white);
    cursor: pointer;
}

nav button#open-menu-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    z-index: 10;
    color: var(--color-white);
    background: transparent;
    border: none;
    cursor: pointer;
}

nav button#close-menu-btn {
    display: none; 
    position: fixed;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    z-index: 10; 
    color: var(--color-white); 
    background: transparent; 
    border: none; 
    cursor: pointer; 
}

.nav__menu {
    position: fixed;
    top: 3.5rem; 
    right: -100%; 
    width: 18rem;
    background: var(--color-primary);
    flex-direction: column;
    gap: 0;
    transition: right 0.3s ease; 
}

.nav__menu.show {
    right: 0; 
}

.nav__menu li {
    width: 100%;
    height: 5.8rem;
}

.nav__menu a {
    background: var(--color-primary);
    box-shadow: -4rem 6rem 10rem rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.nav__menu li a:hover {
    background: var(--color-bg2);
    background: var(--color-bg1);
}




