.home {
    background-color: #1C1C1C !important;
    background: #1C1C1C;
    background: linear-gradient(180deg, rgba(28, 28, 28, 1) 0%, rgb(122, 102, 0) 28%, rgba(28, 28, 28, 1) 70%);
}

body {
    scroll-behavior: smooth;
}

/* Font */
.crimson-text-regular {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}


/* Navigation bar */
.navbar {
    background: #1c1c1cf4 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    position: sticky !important;
    top:0 !important;
    width: 100%;
    z-index: 1000;
}

.navbar-toggler {
    border-color: #fff !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon,
.navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: #FFD500 !important;
    text-shadow: 0 0 8px rgba(255, 213, 0, 0.6);
}

.favButton {
    font-size: 1.5rem;
}

.favButton:hover {
    color: #FFD500;
    text-shadow: 0 0 8px rgba(255, 213, 0, 0.6);
    cursor: pointer;
}
.btn-outline-success {
    color: #fff !important;
    border-color: #fff !important;
}

.btn-outline-success:hover {
    background-color: #FFD500 !important;
    border-color: #FFD500 !important;
    color: #000 !important;
}

.dropdown-menu {
    background: linear-gradient(180deg, rgba(50, 50, 50, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 1px solid #FFD500;
}

.dropdown-item {
    color: #fff;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #FFD500;
    color: #000;
}



/* Triangle animation */
.cls-1,
.cls-2,
.cls-3 {
    stroke-width: 3px;
    stroke: #000000;
    animation: colorCycle 4s ease infinite both;
}

.cls-1 {
    fill: #FFD500;
}

.cls-2 {
    fill: #FFC700;
    animation-delay: -1.33s;
}

.cls-3 {
    fill: #FFBA00;
    animation-delay: -2.66s;
}

@keyframes colorCycle {
    0% {
        fill: #FFD500;
    }

    25% {
        fill: #FFCA00;
    }

    50% {
        fill: #FFC700;
    }

    75% {
        fill: #FFBA00;
    }

    100% {
        fill: #FFD500;
    }
}

.cls-4 {
    display: none;
}

#triangle {
    height: 400px;
    width: 400px;
    padding-top: 30px;
    animation: triangle 4s both infinite;
}

@keyframes triangle {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0px);
    }
}



/* Dramatic Section Styling */
.dramatic-section {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.dramatic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.dramatic-box {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 2px solid #FFD500;
    box-shadow: 0 8px 32px rgba(255, 213, 0, 0.15), inset 0 0 30px rgba(255, 213, 0, 0.05);
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.dramatic-box:hover {
    box-shadow: 0 16px 48px rgba(255, 213, 0, 0.25), inset 0 0 30px rgba(255, 213, 0, 0.1);
    transform: translateY(-5px);
}

.dramatic-content {
    position: relative;
    z-index: 2;
}

.dramatic-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD500;
    text-shadow: 0 0 20px rgba(255, 213, 0, 0.5), 0 4px 15px rgba(0, 0, 0, 0.8);
    animation: dramaticGlow 3s ease-in-out infinite;
    letter-spacing: 2px;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FFD500 50%, transparent 100%);
    margin: 1.5rem auto;
    box-shadow: 0 0 15px rgba(255, 213, 0, 0.6);
}

.dramatic-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.5rem 0;
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.dramatic-goal {
    font-size: 2.8rem;
    color: red;
    margin-top: 2rem;
    font-weight: 700;
    text-shadow: 0 0 25px rgba(255, 213, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.8);
    animation: dramaticPulse 2.5s ease-in-out infinite;
    letter-spacing: 1px;
}