@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;600;700;900&family=Bebas+Neue&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
    --primary-color: #ffffff;
    --secondary-color: #f0f0f0;
    --accent-color: #ff0000;
    --text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    --transition-speed: 0.3s;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ==================== VIDEO BACKGROUND ==================== */
.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
    background: #000;
}

.fullscreen-bg__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* ==================== HEADER & NAVIGATION ==================== */
#divone {
    width: 100%;
    padding: var(--spacing-md) 0;
    text-align: center;
    position: relative;
    z-index: 100;
}

.traffik {
    max-width: 300px;
    width: 90%;
    height: auto;
    margin: 0 auto var(--spacing-md);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
    animation: fadeInDown 1s ease-out;
}

/* Social Media Icons */
.divsocial {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
    animation: fadeIn 1.5s ease-out;
}

.divsocial a {
    display: inline-flex;
    width: 50px;
    height: 50px;
    transition: transform var(--transition-speed) ease;
}

.divsocial img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
    transition: all var(--transition-speed) ease;
}

.divsocial a:hover {
    transform: translateY(-5px) scale(1.1);
}

.divsocial a:hover img {
    filter: drop-shadow(0 8px 25px rgba(255, 255, 255, 0.6)) brightness(1.2);
}

/* Navigation Menu */
.menu {
    margin: var(--spacing-lg) 0;
    animation: fadeIn 2s ease-out;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all var(--transition-speed) ease;
    letter-spacing: 2px;
    display: inline-block;
}

/* Modern Hover Effect */
.effect-box:hover {
    color: var(--primary-color);
    opacity: 0.7;
}

/* ==================== CONTENT SECTIONS ==================== */
.content-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ==================== HOME PAGE ==================== */
#divtwo {
    max-width: 900px;
    width: 90%;
    margin: var(--spacing-xl) auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: var(--spacing-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.5s ease-out;
}

#iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 15px;
}

.divtext {
    max-width: 800px;
    width: 90%;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9);
    animation: fadeIn 2s ease-out;
}

.divtext p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    text-shadow: var(--text-shadow);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ==================== MEDIA PAGE ==================== */
#divtwomedia {
    max-width: 1200px;
    width: 90%;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

#divtwomedia iframe {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    margin-bottom: var(--spacing-lg);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.mediapicture1,
.mediapicture2,
.mediapicture3,
.mediapicture4 {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: all var(--transition-speed) ease;
}

.mediapicture1 img,
.mediapicture2 img,
.mediapicture3 img,
.mediapicture4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mediapicture1:hover,
.mediapicture2:hover,
.mediapicture3:hover,
.mediapicture4:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}

.mediapicture1:hover img,
.mediapicture2:hover img,
.mediapicture3:hover img,
.mediapicture4:hover img {
    transform: scale(1.1);
}

/* ==================== BOOKING PAGE ==================== */
#contactemail {
    max-width: 700px;
    width: 90%;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    line-height: 2;
    text-shadow: var(--text-shadow);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1.5s ease-out;
}

#contactemail a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
    padding-bottom: 2px;
}

#contactemail a:hover {
    color: #ff0000;
    border-color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    .traffik {
        max-width: 220px;
    }

    .divsocial a {
        width: 40px;
        height: 40px;
    }

    .menu ul {
        gap: var(--spacing-sm);
    }

    #iframe {
        height: 300px;
    }

    #divtwomedia iframe {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    body {
        overflow-x: hidden;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .fullscreen-bg__video {
        display: none;
    }

    .fullscreen-bg {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    }

    .divsocial {
        gap: var(--spacing-sm);
    }

    .divsocial a {
        width: 35px;
        height: 35px;
    }

    #divtwo,
    .divtext,
    #contactemail {
        padding: var(--spacing-md);
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}
