/* ==============================================
   COMMON STYLES - Shared across all pages
   ============================================== */

/* Font Declarations - Used by all pages */
@font-face {
    font-family: 'Volksans';
    src: url('../fonts/volksans-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Volksans';
    src: url('../fonts/volksans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Volksans';
    src: url('../fonts/volksans-Normal.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Volksans';
    src: url('../fonts/volksans-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Volksans';
    src: url('../fonts/volksans-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Volksans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0F2F35;
    color: #B8A06F;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    border-bottom: 1px solid rgba(217, 185, 110, 0.3); /* full width line */
}

/* Mobile-first responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles - Shared across all pages */
.navbar {
    padding: 20px 0;
    background-color: #0F2F35;
    position: relative;
    z-index: 1000;
}

.navbar-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-logo {
    position: absolute;
    left: 0;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.navbar-logo .logo-img {
    height: 41px;
    width: auto;
    max-width: 100%;
    filter: brightness(0) saturate(100%) invert(67%) sepia(35%) saturate(407%) hue-rotate(21deg) brightness(93%) contrast(89%);
}

.navbar-logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #B8A06F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link.active {
    font-weight: bold;
    text-decoration: underline;
}

/* Footer Styles - Shared across all pages */
.footer {
    background-color: #0F2F35;
    border-top: 1px solid rgba(217, 185, 110, 0.3);
    padding: 40px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-center {
    text-align: center;
    max-width: 500px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-center p {
    color: #B8A06F;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 10px;
}

.contact-link {
    color: #B8A06F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Touch targets for mobile accessibility */
button,
.btn,
input[type="submit"] {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 10px 0;
    }
    
    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 8px 12px;
    }
    
    .navbar-logo {
        position: static;
        font-size: 24px;
    }
    
    .navbar-logo .logo-img {
        height: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-center {
        text-align: center;
    }
    
    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar-logo {
        font-size: 20px;
    }
    
    .navbar-logo .logo-img {
        height: 28px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
        min-height: 40px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-center {
        text-align: center;
    }
    
    .footer-logo {
        height: 40px;
    }
} 