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

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fixed Left Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 20px;
    width: 280px;
    height: 100vh;
    background: rgba(30, 30, 30, 0.65);
    backdrop-filter: blur(8px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 15px 15px 0;
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.navbar-content {
    padding: 30px 20px;
}

/* Website Title */
.navbar-title {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.title-link {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.title-link:hover {
    color: #c9a961;
}

/* Navigation Menu */
.nav-menu {
    list-style: none;
}

.nav-item {
    margin-bottom: 2px;
}

.nav-link {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    padding: 4px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    letter-spacing: 1px;
}

.nav-link:hover {
    background: rgba(201, 169, 97, 0.2);
    color: #c9a961;
    transform: translateX(5px);
}

/* Expandable Menu Items */
.nav-toggle {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(201, 169, 97, 0.2);
}

.nav-toggle .nav-link {
    padding: 0;
    color: #e0e0e0;
}

/* Calendars submenu should match other submenu items */
.nav-toggle .nav-link.submenu-link {
    color: #b0b0b0;
}

.arrow {
    color: #c9a961;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-toggle.expanded .arrow {
    transform: rotate(90deg);
}

/* Submenu */
.submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 20px;
    margin-top: 10px;
}

.submenu.expanded {
    max-height: 500px;
}

.submenu-link {
    font-size: 14px;
    color: #b0b0b0;
    padding: 4px 15px;
    margin-bottom: 2px;
}

.submenu-link:hover {
    color: #c9a961;
    background: rgba(201, 169, 97, 0.1);
}

/* Remove extra margin-top for nested submenus */
.submenu .submenu {
    margin-top: 0;
}



/* Separator */
.nav-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* Main Content Area */
.main-content {
    margin-left: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 0 50px;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #c9a961;
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a961 0%, #b8995a 100%);
    color: #1a1a1a;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8995a 0%, #a88849 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

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

.btn-secondary:hover {
    background: #c9a961;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

/* Gallery Styles */
.gallery-container {
    padding: 0;
    overflow-x: hidden;
    height: 100vh;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 50px;
}

.gallery-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.gallery-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-scroll {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    /* Removed scroll-behavior: smooth to prevent conflict with JS */
    -webkit-overflow-scrolling: touch; /* Enable momentum scrolling on iOS */
}

.gallery-track {
    display: flex;
    height: 100%;
    gap: 20px;
    padding: 0 20px 0 320px;
}

.gallery-item {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
}

/* Gallery Navigation - Only show in gallery pages */
.gallery-nav {
    display: none !important;
}

/* Mobile scroll hint - only defined in mobile media query */

.gallery-container .gallery-nav {
    display: block !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 97, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 500;
}

.gallery-container .gallery-nav:hover {
    background: #c9a961;
    transform: translateY(-50%) scale(1.1);
}

.gallery-container .gallery-nav.prev {
    left: 320px;
}

.gallery-container .gallery-nav.next {
    right: 20px;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: rgba(30, 30, 30, 0.9);
    border: none;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 24px;
    padding: 12px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:hover {
    background: rgba(201, 169, 97, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container,
    .contact-container {
        margin-left: 320px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr !important;
        padding: 0 30px 0 50px;
    }
    
    .about-image,
    .contact-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background: rgba(30, 30, 30, 0.98);
        backdrop-filter: blur(12px);
        border-radius: 0;
        transition: left 0.3s ease;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .navbar.mobile-open {
        left: 0;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .about-container,
    .contact-container {
        margin-left: 0 !important;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr !important;
        padding: 0 30px;
    }
    
    .about-text,
    .contact-text {
        width: 100%;
        max-width: none;
    }
    
    .about-title,
    .contact-title {
        font-size: 1.875rem;
    }
    
    .about-image,
    .contact-image {
        display: none;
    }
    
    .contact-methods {
        width: 100%;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Hide gallery navigation buttons on mobile */
    .gallery-container .gallery-nav {
        display: none !important;
    }
    
    /* Mobile scroll hint arrow */
    .mobile-scroll-hint {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(201, 169, 97, 0.8);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        color: #1a1a1a;
        font-size: 24px;
        font-weight: bold;
        z-index: 500;
        animation: pulseHint 2s ease-in-out infinite;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    @keyframes pulseHint {
        0%, 100% { 
            opacity: 0.9; 
            transform: translate(-50%, -50%) scale(1);
        }
        50% { 
            opacity: 1; 
            transform: translate(-50%, -50%) scale(1.15);
        }
    }
    
    /* Mobile overlay when menu is open */
    .main-content.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-track {
        padding: 0 20px;
    }
}

/* Custom Scrollbar for Gallery */
.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: #c9a961;
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: #b8995a;
}

/* About Page Styles */
.about-container {
    padding: 60px 0;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.88) 0%, rgba(58, 58, 58, 0.88) 100%), 
                url('./photos/beauty/beauty-and-solitude.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    backdrop-filter: blur(10px);
    margin-left: 320px;
}

.about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 30, 30, 0.3);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    align-items: start;
}

.about-text {
    color: #e0e0e0;
}

.about-title {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-weight: bold;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 1.125rem;
    color: #c9a961;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-section p {
    font-size: 0.825rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.about-cta {
    background: rgba(201, 169, 97, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    margin-top: 40px;
    text-align: center;
}

.about-cta h3 {
    font-size: 1.35rem;
    color: #c9a961;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-cta p {
    font-size: 0.825rem;
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-image {
    position: sticky;
    top: 100px;
}

.portrait-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

/* Contact Page Styles */
.contact-container {
    padding: 60px 0;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.88) 0%, rgba(58, 58, 58, 0.88) 100%), 
                url('./photos/glamour/aportman-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    backdrop-filter: blur(10px);
    margin-left: 320px;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 30, 30, 0.3);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    align-items: start;
}

.contact-text {
    color: #e0e0e0;
    text-align: left;
}

.contact-title {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: bold;
}

.contact-description {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 50px;
}

.contact-method {
    background: rgba(201, 169, 97, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.contact-method:hover {
    background: rgba(201, 169, 97, 0.15);
    transform: translateY(-5px);
}

.contact-method h3 {
    font-size: 1.125rem;
    color: #c9a961;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-method p {
    font-size: 0.75rem;
    color: #b0b0b0;
    margin-bottom: 20px;
}

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

.contact-link:hover {
    color: #fff;
}

.contact-image {
    position: sticky;
    top: 100px;
}

.contact-portrait-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.contact-form {
    background: rgba(30, 30, 30, 0.8);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #c9a961;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a961;
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Responsive Styles for About and Contact */

