
/* Custom styles */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

/* Logo styles */
.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}
.font-playfair {
    font-family: 'Playfair Display', serif;
}
/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Parallax background */
.parallax-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.parallax-layer {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.layer-1 {
    background-image: url('http://static.photos/travel/2000x1000/1');
    opacity: 0.3;
}

.layer-2 {
    background-image: url('http://static.photos/nature/2000x1000/2');
    opacity: 0.2;
}

.layer-3 {
    background-image: url('http://static.photos/cityscape/2000x1000/3');
    opacity: 0.1;
}
/* Admin styles */
.admin-sidebar {
    background: #111827;
    color: white;
    width: 260px;
    transition: all 0.3s;
}

.admin-main {
    flex: 1;
    overflow-y: auto;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #9CA3AF;
    transition: all 0.3s;
}

.admin-nav-link:hover {
    background: #1F2937;
    color: white;
}

.admin-nav-link.active {
    background: #1F2937;
    color: #F59E0B;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    background: #F9FAFB;
    color: #374151;
    font-weight: 600;
}

.admin-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #E5E7EB;
}
/* Gallery styles */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* Animation classes */
.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-fadeIn {
    animation: fadeIn 1.5s ease-out;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
    animation: float 6s ease-in-out infinite 1s;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}