/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-shadow: none !important;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    height: 100vh !important;
    width: 100vw !important;
}

body {
    font-family: 'Arial', sans-serif;
    position: relative;
}

/* Fullscreen Video Background - NO BLACK BARS */
#bgvid {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: -1 !important;
    transform: none !important;
    /* Quality settings */
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    backface-visibility: hidden !important;
}

/* For vertical videos (9:16 aspect ratio) */
@media (max-aspect-ratio: 16/9) {
    #bgvid {
        object-fit: cover !important;
        object-position: center !important;
        width: 100vw !important;
        height: 100vh !important;
    }
}

/* For horizontal videos (16:9 aspect ratio) */
@media (min-aspect-ratio: 16/9) {
    #bgvid {
        object-fit: cover !important;
        object-position: center !important;
        width: 100vw !important;
        height: 100vh !important;
    }
}

/* Force fullscreen on mobile */
@media (max-width: 768px) {
    #bgvid {
        object-fit: cover !important;
        object-position: center !important;
        width: 100vw !important;
        height: 100vh !important;
    }
}

/* Content Overlay */
.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    background: transparent;
    max-width: 600px;
    margin: 0 auto;
    margin-top: -300px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: none !important;
    font-weight: 300 !important;
    letter-spacing: 2px !important;
    color: white;
}

/* More specific rule to override any browser defaults */
.content .hero-content h1 {
    font-weight: 300 !important;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 2px !important;
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0;
    text-shadow: none !important;
    font-weight: 400;
    color: white;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Vacation Haus Navigation - FIXED */
.vh-nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: transparent !important;
    background-color: transparent !important;
    padding: 15px 50px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow: none !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.vh-nav-standard {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: white !important;
    padding: 15px 50px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow: none !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.vh-logo-section {
    display: flex;
    align-items: center;
}

.vh-logo-link {
    text-decoration: none !important;
    color: inherit !important;
}

.vh-logo-img {
    width: 80px;
    height: auto;
}

.vh-nav-overlay .vh-logo-img {
    filter: brightness(0) invert(1);
}

.vh-nav-overlay .vh-logo-link span {
    color: white !important;
    text-shadow: none !important;
}

.vh-nav-standard .vh-logo-img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(43%) saturate(1890%) hue-rotate(201deg) brightness(94%) contrast(91%);
}

.vh-nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vh-nav-overlay .vh-menu-link,
.vh-nav-overlay .vh-phone-number {
    color: white !important;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    text-shadow: none !important;
    border-bottom: none !important;
    outline: none !important;
}

.vh-nav-standard .vh-menu-link,
.vh-nav-standard .vh-phone-number {
    color: #1a365d !important;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    border-bottom: none !important;
}

/* Removed hover effects as requested */

.vh-phone-number {
    font-weight: 600 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        font-weight: 300;
        letter-spacing: 2px;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .vh-nav-standard, .vh-nav-overlay {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .vh-nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .vh-nav-overlay, .vh-nav-standard {
        top: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        font-weight: 300;
        letter-spacing: 2px;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f1f3f4;
    padding: 6px 0;
    text-align: center;
    z-index: 1000;
    margin: 0;
    border: none;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #3b4a6b;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

/* Mobile navigation rules moved to mobile-nav-universal.css */

@media (max-width: 768px) {
    .vh-nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .vh-phone-number {
        display: none !important;
    }
}

/* Universal Mobile Navigation JavaScript - Add this script to all pages */
.mobile-nav-script {
    /* This is a placeholder for the JavaScript that needs to be added to each page */
}

.footer p {
    font-family: 'Montserrat', sans-serif;
    color: #202124;
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
}

.footer .heart {
    color: #3b4a6b !important;
    font-size: 1rem;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Nuclear option - ensure heart is ALWAYS Vacay blue everywhere */
html body .footer .heart,
html body footer .heart,
.footer .heart,
footer .heart,
[class*="footer"] .heart,
[class*="heart"] {
    color: #3b4a6b !important;
}

/* Maximum specificity for heart color */
html body div.footer p span.heart,
html body footer p span.heart,
html body .footer p .heart,
html body footer p .heart {
    color: #3b4a6b !important;
}

/* Nuclear option - override ANY possible CSS */
* .heart,
* .footer .heart,
* footer .heart,
* .footer * .heart,
* footer * .heart,
* .heart *,
* .footer .heart *,
* footer .heart * {
    color: #3b4a6b !important;
}

/* Homepage Social Section */
.home-social-section {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.home-social-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: none !important;
}

.home-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.home-social-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: all 0.3s ease;
}

.home-social-link.facebook {
    background: #1877f2;
}

.home-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.home-social-link i {
    font-size: 16px;
    color: white;
}

.home-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .footer {
        padding: 8px 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .footer p {
        font-size: 0.875rem;
        line-height: 1.2;
    }
    
    .footer .heart {
        color: #3b4a6b !important;
        font-size: 1.1rem !important;
        display: inline-block !important;
    }
    
    /* Nuclear mobile heart fix - ensure Vacay Haus blue */
    html body .footer .heart,
    html body footer .heart,
    .footer .heart,
    footer .heart,
    [class*="footer"] .heart,
    [class*="heart"] {
        color: #3b4a6b !important;
        font-size: 1.1rem !important;
    }

    /* CSS Reset for heart - override browser defaults */
    .heart {
        color: #3b4a6b !important;
        font-size: 1.1rem !important;
    }
    
    .home-social-section {
        bottom: 70px;
    }
    
    .home-social-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }
} 