@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
}

h3 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.letter-spacing {
    letter-spacing: 0.03em;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.section-bg {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.gradient-bg {
    background: linear-gradient(135deg, #f8e8f0 0%, #e8f4f8 50%, #f0e8f8 100%);
}

.card-hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 165, 184, 0.2);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(212, 165, 184, 0.15);
    border-color: rgba(134, 134, 134, 0.306);
}

.card-hover h4 {
    font-weight: 700;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.section-divider {
    background: linear-gradient(90deg, transparent, #d4a5b8, transparent);
    height: 1px;
    margin: 2rem 0;
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s ease-out;
}

/* Active states */
.animate-on-scroll.active,
.fade-in.active,
.slide-up.active,
.slide-left.active,
.slide-right.active,
.scale-in.active,
.rotate-in.active {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0);
}

/* Staggered animations */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.double-bracket-box {
    position: relative;
    border: 3px solid #000;
    border-radius: 10px;
    box-sizing: border-box;
}

.double-bracket-box::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid #999;
    border-radius: 8px;
    pointer-events: none;
    z-index: 5;
}

.image-placeholder {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 84%);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
}

.animate-on-scroll.animated {
    animation: fadeInUp 1s ease-out forwards;
}

.footer_overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 56%);
}

.footer {
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.footer-top-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    clip-path: polygon(10% 0, 90% 0, 85% 100%, 15% 100%);
}

.footer-bottom-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #ffffff;
    clip-path: polygon(15% 0,
            85% 0,
            90% 100%,
            10% 100%);
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 130px 15% 2px;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-section.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: #fff;
}

.footer-section.quick-links h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links-address {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 1.5rem;
}

.links-list li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.links-list li a:hover {
    color: #fce10f;
}

@media (max-width: 768px) {
    .links-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .links-list {
        grid-template-columns: 1fr;
    }
}

.quick-links h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-address h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-address p {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0.2rem 0;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        padding: 100px 12% 2px;
        gap: 0rem;
    }

    .footer-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        flex-direction: column;
        padding: 100px 0% 2px;
        gap: 0rem;
    }

    .footer-section {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .footer-top-shape {
        clip-path: polygon(10% 0, 90% 0, 85% 85%, 15% 85%);
    }
}

@media (max-width: 480px) {
    .footer-top-shape {
        clip-path: polygon(10% 0, 90% 0, 85% 80%, 15% 80%);
    }
}

.speaker-card {
    background: linear-gradient(335deg, #ffffff14);
    border: 1px solid rgba(0, 188, 212, 0.2);
    backdrop-filter: blur(10px);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 7px 3px 0px rgb(0 188 212);
}

.speaker-card:hover {
    box-shadow: 9px 10px 0px rgb(0 188 212);
    transform: translateY(-8px);
}

.speaker-badge {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(0, 188, 212, 0.3);
}

.card-hover-award {
    transition: all 0.3s ease;
}

.card-hover-award:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}