:root {
    --primary-color: #e74c3c;
    --secondary-color: #27ae60;
    --accent-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --white: #ffffff;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header & Navigation */
.navbar {
    background-color: var(--dark-color);
    padding: 15px 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: #219653;
    border-color: #219653;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto;
}

/* Package Cards */
.package-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-header {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.package-title {
    margin: 0;
    font-weight: 700;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.package-body {
    padding: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-footer {
    padding: 1.5rem;
    text-align: center;
    background-color: #f9f9f9;
}

/* Gallery */
.gallery-container {
    margin-bottom: 2rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.gallery-filter button {
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.gallery-item {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-user {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Booking Form */
.booking-form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
}

.form-control {
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
}

footer a {
    color: var(--white);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 50vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .gallery-filter {
        flex-wrap: wrap;
    }
    
    .gallery-filter button {
        margin-bottom: 0.5rem;
    }
}

/* Admin Dashboard Styles */
.admin-dashboard {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.admin-sidebar-collapsed {
    width: 80px;
}

.admin-sidebar .nav-link {
    color: var(--white);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
}

.admin-sidebar .nav-link i {
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.admin-content {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-title {
    margin: 0;
    font-weight: 700;
}

.admin-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-stats-card {
    text-align: center;
    padding: 1.5rem;
}

.admin-stats-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.admin-stats-label {
    color: #6c757d;
    font-weight: 600;
}

.admin-calendar {
    height: 700px;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .admin-sidebar {
        width: 80px;
    }
    
    .admin-sidebar .nav-link span {
        display: none;
    }
    
    .admin-sidebar .nav-link i {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .admin-dashboard {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        padding: 1rem 0;
    }
    
    .admin-sidebar .nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .admin-sidebar .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .admin-sidebar .nav-link i {
        margin-right: 0.5rem;
    }
    
    .admin-sidebar .nav-link span {
        display: inline;
    }
    
    .admin-content {
        padding: 1rem;
    }
}
/* Mayalu Image Styles - Updated */
.mayalu-image-container {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
}

.mayalu-image-container img {
    width: 100%;
    transition: transform 0.5s ease;
    display: block;
}

.mayalu-image-container:hover img {
    transform: scale(1.03);
}

/* New text container below image */
.mayalu-text-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 2rem;
    text-align: left;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: -5px; /* Create a seamless connection with the image above */
}

.mayalu-text-container h2 {
    margin: 0 0 0.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.mayalu-text-container p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .mayalu-text-container {
        padding: 1.5rem;
    }
    
    .mayalu-text-container h2 {
        font-size: 1.8rem;
    }
    
    .mayalu-text-container p {
        font-size: 1rem;
    }
}

.payment-separator {
    display: inline-block;
    position: relative;
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    width: 100%;
}

.payment-separator::before,
.payment-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #dee2e6;
}

.payment-separator::before {
    left: 0;
}

.payment-separator::after {
    right: 0;
}

.card-payment-form {
    border-radius: 8px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}
