/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a7c59;
    --secondary-color: #6b9a7a;
    --accent-color: #a4c96f;
    --dark-color: #2d5a3d;
    --light-color: #f8faf6;
    --text-color: #333;
    --text-muted: #666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ==================== Navigation Bar ==================== */
.navbar-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: white !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar-brand i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.navbar-custom .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

.navbar-custom .nav-link.login-btn {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 1rem;
}

.navbar-custom .nav-link.login-btn:hover {
    background-color: white;
    transform: translateY(-2px);
}

/* ==================== Hero Section ==================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translateY(-20%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ==================== Search Form ==================== */
.search-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

.search-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    align-items: flex-end;
}

.search-group {
    display: flex;
    flex-direction: column;
}

.search-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.search-group input,
.search-group select {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.guests-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.guests-input select {
    flex: 1;
}

.guests-input span {
    color: var(--border-color);
    font-weight: 300;
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 124, 89, 0.3);
}

/* ==================== Section Headers ==================== */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* ==================== Featured Hotels Section ==================== */
.featured-hotels {
    background-color: var(--light-color);
}

.featured-hotels .section-header p {
    max-width: 900px;
}

.hotel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hotel-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hotel-rating i {
    color: var(--accent-color);
    margin-right: 5px;
}

.hotel-info {
    padding: 25px;
}

.hotel-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.hotel-info .location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hotel-info .location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.hotel-info .description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.hotel-footer .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hotel-footer .price small {
    font-size: 0.7rem;
    font-weight: 400;
    display: block;
    color: var(--text-muted);
}

.rating-dots {
    display: flex;
    gap: 8px;
}

.rating-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.7;
}

.rating-dots .dot:first-child {
    opacity: 1;
}

/* ==================== Memories Section ==================== */
.memories-section {
    padding: 100px 0;
    background: white;
}

.memories-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.memories-section h2 {
    font-size: 2.5rem;
}

.btn-read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.memories-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.memory-item {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.memory-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.memory-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.memory-item:hover img {
    transform: scale(1.05);
}

/* ==================== Experience Section ==================== */
.experience-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.experience-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.experience-circles {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.circle-item {
    width: 100px;
    height: 100px;
    opacity: 0.5;
}

.circle-svg {
    width: 100%;
    height: 100%;
    color: white;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==================== News Section ==================== */
.news-section {
    background: var(--light-color);
}

.news-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.show-more:hover {
    color: var(--secondary-color);
}

.show-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.show-more:hover i {
    transform: translateX(5px);
}

.news-item.large {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    height: 100%;
    transition: all 0.3s ease;
}

.news-item.large:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.news-item.large img {
    width: 40%;
    height: auto;
    object-fit: cover;
}

.news-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-item h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.news-item.small {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-item.small:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.news-item.small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-item.small h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    padding: 20px;
    padding-bottom: 0;
}

.news-item.small a {
    color: var(--primary-color);
    font-weight: 600;
    padding: 20px;
    padding-top: 10px;
    font-size: 0.9rem;
}

/* ==================== Testimonials Section ==================== */
.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.testimonial-slider {
    background: var(--light-color);
    border-radius: 15px;
    padding: 50px;
    margin-top: 3rem;
}

.testimonial-item {
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.stars {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.stars i {
    margin-right: 3px;
}

/* ==================== Newsletter Section ==================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-color);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

/* ==================== Footer ==================== */
.footer-section {
    background: var(--dark-color);
    color: #bbb;
}

.footer-section h5,
.footer-section h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section h5 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section p {
    color: #bbb;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        min-height: 300px;
    }

    .hero-image img {
        width: 250px;
        height: 250px;
    }

    .search-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .search-btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hotel-card {
        margin-bottom: 20px;
    }

    .memories-gallery {
        grid-template-columns: 1fr;
    }

    .memory-item {
        height: 250px;
    }

    .news-item.large {
        flex-direction: column;
    }

    .news-item.large img {
        width: 100%;
        height: 200px;
    }

    .experience-section h2 {
        font-size: 2rem;
    }

    .testimonial-slider {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .experience-circles {
        gap: 30px;
    }

    .circle-item {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .search-form {
        padding: 20px;
    }

    .hotel-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .rating-dots {
        justify-content: center;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        padding: 15px 20px;
    }

    .footer-section .row {
        text-align: center;
    }

    .footer-section h5,
    .footer-section h6 {
        margin-top: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }
}
