/* CSS Reset and Variables */
:root {
    --color-red: #c1121f; /* Deep, vibrant red from logos */
    --color-red-dark: #780000;
    --color-white: #ffffff;
    --color-off-white: #f8f9fa;
    --color-dark: #111111;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

.text-red { color: var(--color-red); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }

/* Navigation */
.navbar {
    position: fixed;
    top: 44px; /* Offset for ticker tape */
    width: 100%;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-red);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-logo {
    height: 40px;
    margin-right: 10px;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.2rem; /* Reduced gap to fit all the new links safely */
}

.nav-links a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-red);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-red);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-white);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}

.dropdown-content a {
    color: var(--color-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
}

.dropdown-content a::after {
    display: none; /* Disable underline animation for dropdown items */
}

.dropdown-content a:hover {
    background-color: var(--color-off-white);
    color: var(--color-red);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* News Ticker */
.news-ticker-container {
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 100%;
    height: 32px;
    background-color: var(--color-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 998;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.news-ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 45s linear infinite;
    padding-left: 100%;
}

.news-ticker:hover {
    animation-play-state: paused;
}

.news-item {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 300;
}

.news-item a {
    color: var(--color-off-white);
    text-decoration: none;
    transition: var(--transition);
}

.news-item a:hover {
    color: var(--color-red);
}

.news-divider {
    color: var(--color-red);
    margin: 0 15px;
    font-weight: 800;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-red);
    padding-top: 156px; /* Prevent navbar, news, and ticker from covering content (80 + 44 + 32) */
    padding-bottom: 4rem;
}

.hero-bg {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    max-height: 50vh;
    object-fit: contain;
    opacity: 1; /* Full opacity, pure white */
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    padding: 0 2rem;
    max-width: 1000px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    white-space: nowrap;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    white-space: nowrap;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-white);
    color: var(--color-red);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* Sections & Layout */
.section {
    padding: 6rem 0;
}

.bg-red {
    background-color: var(--color-red);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.section-desc {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    opacity: 0.8;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.col-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.feature-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(193, 18, 31, 0.2);
}

/* Cards */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2rem;
    border-radius: 20px;
    color: var(--color-white);
    transition: var(--transition);
}

.card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Art Gallery */
.art-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.art-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    animation: fadeIn 1s ease-in-out;
}

.art-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.art-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(193, 18, 31, 0.3);
}

.art-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--color-white);
    text-align: left;
}

.art-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.art-overlay a {
    color: var(--color-red);
    text-decoration: none;
    font-weight: 800;
}

.art-overlay a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    border-radius: 8px;
}

.footer-brand h2 {
    font-size: 2rem;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links h3 {
    margin-bottom: 0.5rem;
    color: var(--color-red);
}

.footer-links a {
    color: var(--color-off-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-red);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Responsive */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 32px); /* Clear the news ticker hanging below the navbar */
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        padding: 2rem 0;
        text-align: center;
        gap: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        z-index: 999;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: transparent;
        display: none;
    }
    .dropdown:hover .dropdown-content,
    .dropdown:active .dropdown-content,
    .dropdown:focus .dropdown-content {
        display: block;
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        flex-direction: column;
    }
}
