:root {
    --primary-color: #6d0101;
    --bg-color: #fff5eb;
    --text-dark: #1a1a1a;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Section */
.header-top {
    background-color: var(--white);
}

.header-top img {
    max-width: 100%;
    height: auto;
}

.logo-container {
    text-align: center;
    padding: 20px 0;
}

.logo-container img {
    max-width: 150px;
    height: auto;
}
		.qr-section {
			padding: 40px 0 0 0;
		}
		.qr-box {
			background: var(--white, #fff);
			border-radius: 16px;
			box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
			max-width: 420px;
			margin: 0 auto;
			padding: 32px 24px 24px 24px;
		}
		#reader {
			width: 100%;
			min-height: 320px;
			border-radius: 12px;
			background: #f8f8f8;
			box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
		}
		#qr-result {
			margin-top: 24px;
			font-size: 1.1em;
			text-align: center;
			color: var(--primary-color, #6d0101);
			font-weight: 600;
			letter-spacing: 1px;
		}
/* Navigation Menu */
.nav-menu {
    top: 21px;
    right: 10px;
    /* background-color: var(--white); */
    padding: 15px 0;
    /* border-top: 1px solid #f0f0f0; */
    position: absolute;
}

.nav-menu .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1000;
    position: absolute;
    right: 15px;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

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

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

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

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-menu ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background-color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.hero-title {
    font-family: 'Georgia', serif;
    color: var(--primary-color);
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 23px;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

.hero-description {
    font-family: 'Georgia', serif;
    color: var(--primary-color);
    font-size: 27px;
    font-style: italic;
    margin: 30px 0;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 12px 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #d06b29;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 124, 58, 0.3);
}

/* Slider Section */
.slider-section {
    background-color: var(--white);
    padding: 60px 0;
}

.section-title {
    font-family: 'Georgia', serif;
    color: var(--primary-color);
    font-size: 35px;
    font-style: italic;
    text-align: center;
    margin-bottom: 15px;
}

.section-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

/* Destination Cards */
.destination-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 15px;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card-body {
    padding: 20px;
}

.destination-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.destination-description {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.destination-price {
    font-size: 16px;
    margin-bottom: 20px;
}

.destination-price .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.destination-price .duration {
    color: var(--text-dark);
    font-size: 14px;
}

/* Carousel Custom Styles */
.carousel {
    cursor: grab;
}

.carousel:active {
    cursor: grabbing;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-indicators button {
    background-color: var(--primary-color);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Safe Travel Section */
.safe-travel-section {
    background-color: var(--white);
    padding: 60px 0;
}

.safe-travel-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.safe-travel-image {
    max-width: 100%;
    height: auto;
}

.feature-card {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.feature-title {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background-color: var(--bg-color);
    padding: 60px 0 30px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 120px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-menu {
    text-align: center;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: var(--primary-color);
}

.footer-contact {
    text-align: center;
}

.footer-contact h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-contact p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact a {
    color: var(--text-dark);
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 22px;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        gap: 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
        transition: right 0.3s ease;
    }
    
    .nav-menu ul.active {
        right: 0;
    }
    
    .nav-menu ul li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    
    .nav-menu ul li a {
        font-size: 16px;
        display: block;
        padding: 10px 20px;
    }
    
    .safe-travel-content {
        flex-direction: column;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
}

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Divider */
.divider {
    text-align: center;
    margin: 40px 0;
}

.divider img {
    max-width: 300px;
    height: auto;
}
