:root {
    --primary: #f4ce14;
    --secondary: #f5f7f8;
    --tetriary: #379777;
    --fouthcolor: #333;
    --hover-bg: rgba(244, 206, 20, 0.2);
    --transition-speed: 0.3s;
    --overlay-bg: rgba(0, 0, 0, 0.6);
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: var(--fouthcolor);

    box-sizing: border-box;
    scroll-behavior: smooth;
    height: 100%;
}


header.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    background: black;

    color: var(--secondary);
    z-index: 10;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);

}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: 100px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all var(--transition-speed);
}

header nav ul li a:hover {
    background: var(--hover-bg);
    color: var(--primary);
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    margin: 20px 0;
    text-align: center;
}

section h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #222;
    margin: 30px 0 10px;
    font-weight: bold;
}

section p {
    max-width: 800px;
    margin: 15px auto;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0 10px;
    color: #555;
}


h2,
h3 {
    text-align: center;
    color: #222;
    margin: 25px auto 15px;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}


header {
    border-bottom: 2px solid #ddd;
}

section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 20px auto;
}


footer {
    text-align: center;
    margin-top: 20px;
    padding: 15px 0;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
}

footer a {
    color: #ff9800;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

h1 {
    text-decoration: underline;
    padding-bottom: 20px;
}

body {
    background: linear-gradient(to right, #f4ce14, #379777);
    color: white;
    text-align: center;
    padding: 100px 20px;

}