/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BODY ================= */
body {
    font-family: "Poppins", sans-serif;
    background: radial-gradient(circle at top left, #fff5e6, #ffe0e0, #ffd6cc);
    background-attachment: fixed;
    color: #2b2b2b;
    line-height: 1.7;
    scroll-behavior: smooth;
}

/* ================= HEADER ================= */
header {
    background: linear-gradient(135deg, #7b0000, #c1121f, #ff6b35);
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

header h1 {
    font-size: 38px;
    letter-spacing: 3px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.4);
    animation: fadeDown 1.2s ease;
}

/* ================= NAV ================= */
nav {
    margin-top: 25px;
}

nav a {
    display: inline-block;
    text-decoration: none;
    margin: 8px;
    padding: 12px 22px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

nav a:hover {
    background: gold;
    color: #7b0000;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* ================= SECTION ================= */
section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px;
    border-radius: 25px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    animation: fadeUp 1.2s ease;
}

/* ================= TITLES ================= */
h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #7b0000;
    position: relative;
}

h2::after {
    content: "";
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, gold, orange);
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 3px;
}

/* ================= LIST ================= */
ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

li {
    margin-bottom: 10px;
}

/* ================= IMAGE EFFECT ================= */
img {
    width: 48%;
    margin: 1%;
    border-radius: 20px;
    transition: all 0.5s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

img:hover {
    transform: perspective(800px) rotateY(8deg) scale(1.08);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* ================= VIDEO ================= */
video {
    margin-top: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* ================= FORM ================= */
form {
    max-width: 500px;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 40px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #c1121f;
    box-shadow: 0 0 15px rgba(193,18,31,0.4);
}

button {
    background: linear-gradient(135deg, #7b0000, #c1121f);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.4s;
}

button:hover {
    background: gold;
    color: #7b0000;
    transform: scale(1.08);
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #7b0000, #c1121f);
    color: white;
    margin-top: 70px;
}

/* ================= ANIMATION ================= */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}