/* Custom Fonts */
@font-face {
    font-family: 'Amore';
    src: url('fonts/Amore Regular Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

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

:root {
    --primary-color: #85351C;
    --primary-light: #B8684D;
    --text-dark: #1D1D1D;
    --background-light: #F5F0EB;
    --text-light: #ccc;
    --white: #ffffff;
    --transition: 0.3s ease;
}

body {
    font-family: 'Amore', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-image: url('images/Kruda_Background_Wall.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: all var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav.active a:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav.active a:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav.active a:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

/* Brand Image */
.brand-image {
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
    text-align: center;
}

.brand-image img {
    max-width: 1400px !important;
    height: auto;
    max-height: 700px !important;
    object-fit: contain;
    width: auto;
}

/* Desktop only - make image twice as big */
@media (min-width: 1025px) {
    .brand-image img {
        max-width: 1820px !important;
        max-height: 910px !important;
    }
}

/* Desktop Navigation */
.desktop-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.desktop-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    transition: color var(--transition);
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
}

.language-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.language-toggle:hover {
    background: rgba(133, 53, 28, 0.8);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.current-flag {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.language-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 10px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    width: 100%;
    padding: 12px 15px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    transition: all var(--transition);
    font-size: 14px;
    font-weight: 300;
}

.language-option:hover {
    background: rgba(133, 53, 28, 0.3);
    transform: translateX(5px);
}

.language-option .flag {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.language-option .lang-name {
    font-family: 'Amore', serif;
    letter-spacing: 0.5px;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
    margin: 0;
    border: none;
    flex: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 5px;
}

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

.footer-logo {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    font-family: 'Amore', serif;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.footer-right a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
}

.footer-right a:hover {
    color: var(--primary-color);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .desktop-nav {
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .brand-image {
        margin-bottom: 60px;
    }
    
    .brand-image img {
        max-width: 1100px;
        max-height: 550px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        justify-content: center;
        width: 100%;
        align-items: center;
    }
    
    .footer-right {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .brand-image img {
        max-width: 800px;
        max-height: 400px;
    }
    
    .mobile-nav a {
        font-size: 20px;
    }
    
    .site-footer {
        padding: 20px 0;
        margin: 0;
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    .footer-content {
        padding: 0 15px;
        margin: 0;
        width: 100%;
    }
    
    .language-switcher {
        top: 20px;
        right: 20px;
    }
    
    .language-toggle {
        width: 45px;
        height: 45px;
    }
    
    .current-flag {
        width: 18px;
        height: 18px;
    }
    
    .language-dropdown {
        min-width: 140px;
        top: 55px;
    }
}