/* Custom CSS for Kwati Villa Website */

:root {
    --primary-color: #0B5345;
    --secondary-color: #1A5276;
    --accent-color: #F1C40F;
    --earth-color: #6E2C00;
    --light-bg: #f8f9fa;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    background: rgba(11, 83, 69, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand h3 {
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(11, 83, 69, 0.7), rgba(26, 82, 118, 0.7)), url('../images/IMG_4970.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-divider {
    width: 150px;
    height: 6px;
    background-color: var(--accent-color);
    margin: 0 auto 2rem;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #D4AC0D;
    border-color: #D4AC0D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

/* Day Cards */
.day-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.day-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.timeline-item .time {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--accent-color);
    min-width: 80px;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.timeline-item span:last-child {
    flex: 1;
    line-height: 1.4;
}

/* Experience Cards */
.experience-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.experience-content {
    padding: 2rem;
}

.experience-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.experience-list li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.experience-list li:last-child {
    border-bottom: none;
}

/* Included Section */
.included-section {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.included-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.included-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
    min-width: 30px;
}

/* Contact Section */
.contact-item {
    text-align: center;
    padding: 1rem;
}

.contact-item i {
    color: var(--accent-color);
}

.contact-item h5 {
    margin: 1rem 0 0.5rem;
    color: white;
}

.contact-item p {
    margin: 0;
    color: #ccc;
}

.slogan {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .day-card {
        margin-bottom: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-item .time {
        margin-bottom: 0.5rem;
        min-width: auto;
    }
    
    .experience-content {
        padding: 1.5rem;
    }
    
    .included-section {
        padding: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

/* Background Colors */
.bg-light {
    background-color: var(--light-bg) !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Language Dropdown */
.dropdown-menu {
    background-color: var(--primary-color);
    border: none;
}

.dropdown-item {
    color: white;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Image Hover Effects */
img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

