/* VW Fonts */
@font-face {
    font-family: 'VW Head';
    src: url('../fonts/vw-head/VWHeadWeb-Regular.woff2') format('woff2'),
        url('../fonts/vw-head/VWHeadWeb-Regular.woff') format('woff'),
        url('../fonts/vw-head/VWHeadWeb-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Head';
    src: url('../fonts/vw-head/VWHeadWeb-Bold.woff2') format('woff2'),
        url('../fonts/vw-head/VWHeadWeb-Bold.woff') format('woff'),
        url('../fonts/vw-head/VWHeadWeb-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Head';
    src: url('../fonts/vw-head/VWHeadWeb-Light.woff2') format('woff2'),
        url('../fonts/vw-head/VWHeadWeb-Light.woff') format('woff'),
        url('../fonts/vw-head/VWHeadWeb-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Text';
    src: url('../fonts/vw-text/VWTextWeb-Regular.woff2') format('woff2'),
        url('../fonts/vw-text/VWTextWeb-Regular.woff') format('woff'),
        url('../fonts/vw-text/VWTextWeb-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Text';
    src: url('../fonts/vw-text/VWTextWeb-Bold.woff2') format('woff2'),
        url('../fonts/vw-text/VWTextWeb-Bold.woff') format('woff'),
        url('../fonts/vw-text/VWTextWeb-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Text';
    src: url('../fonts/vw-text/VWTextWeb-Light.woff2') format('woff2'),
        url('../fonts/vw-text/VWTextWeb-Light.woff') format('woff'),
        url('../fonts/vw-text/VWTextWeb-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Text';
    src: url('../fonts/vw-text/VWTextWeb-Medium.woff2') format('woff2'),
        url('../fonts/vw-text/VWTextWeb-Medium.woff') format('woff'),
        url('../fonts/vw-text/VWTextWeb-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Hero Section */
.vw-hero-section {
    position: relative;
    height: 90vh;
    min-height: 400px;
    background: url('../hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 40px;
    overflow: hidden;
}

.vw-hero-content {
    width: 100%;
    text-align: left;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

.vw-hero-title {
    font-family: 'VW Head', sans-serif;
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.vw-hero-subtitle {
    font-family: 'VW Text', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.vw-hero-logo-container {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vw-hero-logo-line {
    position: absolute;
    width: calc(34% - 10px);
    top: 50%;
    right: 0;
    height: 2px;
    background: white;
    transform: translateY(-50%);
    z-index: 1;
}

.vw-hero-logo-line1 {
    width: calc(62% - 10px);
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: white;
    transform: translateY(-50%);
    z-index: 1;
}

.vw-hero-logo {
    position: relative;
    width: 56px;
    height: 56px !important;
    z-index: 2;
    filter: brightness(0) invert(1);
    background: transparent;
    right: -14%;
}

.vw-hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(rgba(0, 30, 80, 0.6), rgba(0, 30, 80, 0.4));
    transform: translateY(-50%);
    z-index: -1;
    backdrop-filter: blur(5px);
}

.vw-language-buttons {
    position: absolute;
    top: 10px;
    left: 30px;
    z-index: 4;
    display: flex;
}

.vw-language-btn {
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'VW Head', sans-serif;
    font-weight: normal;
}

.vw-language-btn:hover {
    color: #001E50;
}

.vw-language-btn.active {
    font-weight: bolder;
}

.vw-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vw-hero-section {
        height: 50vh;
        min-height: 300px;
        background-attachment: scroll;
    }

    .vw-hero-title {
        font-size: 2.5rem;
        font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-display: swap;
    }

    .vw-hero-subtitle {
        font-size: 1.1rem;
        font-family: 'VW Text', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-display: swap;
    }

    .vw-hero-logo {
        width: 50px;
    }

    .vw-language-buttons {
        top: 1px;
        left: 20px;
    }

    .vw-hero-logo-line1 {
        width: calc(60% - 25px);
    }

    .vw-hero-logo-line {
        width: calc(32% - 25px);
    }

    .vw-language-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .vw-hero-logo-container {
        top: 48px;
    }
}

@media (max-width: 480px) {
    .vw-hero-title {
        font-size: 2rem;
        font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-display: swap;
    }

    .vw-hero-subtitle {
        font-size: 1rem;
        font-family: 'VW Text', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-display: swap;
    }

    .vw-hero-logo {
        width: 30px;
        right: 0;

    }

    .vw-hero-logo-line1 {
        width: calc(45%);
    }

    .vw-hero-logo-line {
        width: calc(45%);
    }

    .vw-language-buttons {
        left: 15px;
    }

    .vw-language-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .vw-hero-logo-container {
        top: 30px !important;
    }


}

/* Global Font Updates */
body {
    font-family: 'VW Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Button Styles */
.vw-btn {
    font-family: 'VW Head', sans-serif;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.vw-btn-primary {
    background: linear-gradient(135deg, #001E50 0%, #0033A0 100%);
    border-radius: 24px;
    color: white;
}

.vw-btn-primary:hover {
    background: linear-gradient(135deg, #002666 0%, #0040CC 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 30, 80, 0.4);
}

.vw-btn-secondary {
    background: transparent;
    color: #001E50;
    border: 2px solid #001E50;
}

.vw-btn-secondary:hover {
    background: #001E50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 30, 80, 0.3);
}

/* Content Wrapper */
.vw-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Language switching functionality */
.vw-language-javascript {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Event Sections */
.vw-events-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.vw-section-title {
    font-family: 'VW Head', sans-serif;
    font-size: 2rem;
    font-weight: normal;
    color: #000;
    margin-bottom: 30px;
    text-align: left;
}

.vw-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vw-event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 350px;

}

.vw-event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 15px;
}

.vw-event-link {
    font-family: 'VW Head', sans-serif;
    font-weight: bold;
    color: #0040C5;
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.4;
}

.vw-event-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .vw-events-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .vw-section-title {
        font-size: 1.8rem;
    }

    .vw-event-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .vw-events-grid {
        grid-template-columns: 1fr;
    }

    .vw-section-title {
        font-size: 1.5rem;
    }

    .vw-event-image {
        height: 160px;
    }
}

/* Improved card shadows and spacing */
.city-card,
.event-card {
    box-shadow: 0 10px 40px rgba(0, 30, 80, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover,
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 30, 80, 0.2);
}