
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --text-blue: #ffffff;
    --yellow-badge: #f1c40f;
    --transition-speed: 24s; 
}

body {
    overflow-x: hidden;
}


.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}


.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: imageSlider var(--transition-speed) infinite linear;
}


.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}


.slide-1 { background-image: url('../image/heroimage2.jpeg'); animation-delay: 0s; }
.slide-2 { background-image: url('../image/hero\ image3.jpeg'); animation-delay: 6s; }
.slide-3 { background-image: url('../image/slider\ 1.jpeg'); animation-delay: 12s; }
.slide-4 { background-image: url('../image/slider2.jpeg'); animation-delay: 18s; }

@keyframes imageSlider {
    0% { opacity: 0; transform: scale(1); }
    4% { opacity: 1; }
    21% { opacity: 1; }
    25% { opacity: 0; transform: scale(1.05); } 
    100% { opacity: 0; }
}


.navbar {
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border: 2px dashed #3b42e4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #3b42e4;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--text-blue);
}


.hero-content {
    max-width: 800px;
    margin-bottom: auto;
    margin-top: auto; 
    padding: 0 20px;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 700;
    color: var(--text-blue);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}


.btn-main {
    display: inline-block;
    text-decoration: none;
    background-color: #ffffff;
    color: #333;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background-color: var(--text-blue);
    color: #fff;
}

.badge-location {
    display: inline-block;
    background-color: var(--yellow-badge);
    color: #333;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    width: max-content;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif; 
}

body {
    background-color: #f0fdf4;
}


.info-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #b3d79a; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
}


.bg-pattern-left {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background-color: #8cb86b;
    border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%;
    z-index: 1;
    opacity: 0.7;
}

.bg-pattern-right {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 250px;
    background-color: #79a259;
    border-radius: 30% 70% 41% 59% / 66% 30% 70% 34%;
    z-index: 1;
    opacity: 0.6;
}


.container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


.content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
}

.description {
    color: #122902;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.underline-text {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-info {
    display: inline-block;
    text-decoration: none;
    background-color: #ffffff;
    color: #435fa5;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 8px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}


.vertical-divider {
    width: 3px;
    height: 400px;
    background-color: #557e37;
    align-self: center;
}


.image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-container {
    position: relative;
    width: 100%;
    max-width: 440px;
}


.image-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.3);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.curved-text-container {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none; 
}

.curved-svg {
    width: 100%;
    height: auto;
}

.curved-svg text {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: bold;
    fill: #153277; 
    letter-spacing: 2px;
}


@media (max-width: 850px) {
    .container {
        flex-direction: column;
        gap: 50px;
    }
    
    .vertical-divider {
        width: 80%;
        height: 3px;
    }
    
    .content-col {
        text-align: center;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-light: #f8faff;
    --primary-blue: #1d337d;
    --accent-yellow: #f1c40f;
    --text-muted: #7f8c8d;
    --badge-bg: #f1f5fe;
}

body {
    background-color: var(--bg-light);
}

.restaurant-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}


.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title .icon {
    font-size: 1.5rem;
    opacity: 0.4;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin-top: 8px;
    border-radius: 2px;
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.restaurant-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(29, 51, 125, 0.08);
}

.card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.restaurant-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.restaurant-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-yellow);
    text-transform: uppercase;
}

.restaurant-address {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 8px;
}


.time-badge {
    align-self: flex-start;
    background-color: var(--badge-bg);
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}


@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.75rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-green-gradient: linear-gradient(135deg, #cde6b3 0%, #b3db95 100%);
    --primary-blue: #1d337d;
    --accent-yellow: #f1c40f;
    --text-muted: #7f8c8d;
    --card-bg: #f8faff;
}

.accommodation-section {
    min-height: 100vh;
    background: var(--bg-green-gradient);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.section-header {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    width: 100%;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hotel-icon {
    font-size: 1.4rem;
    opacity: 0.4;
}

.title-underline {
    width: 90px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin-top: 8px;
    border-radius: 2px;
}


.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.hotel-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
    line-height: 1.3;
}

.hotel-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}


.amenities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto; 
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #444;
}

.amenity-icon {
    font-size: 1rem;
    width: 20px;
    display: inline-flex;
    justify-content: center;
    opacity: 0.8;
}


@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .accommodation-section {
        padding: 40px 20px;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-light: #f8faff;
    --primary-blue: #1d337d;
    --accent-yellow: #f1c40f;
    --text-muted: #7f8c8d;
    --badge-bg: #f1f5fe;
}

body {
    background-color: var(--bg-light);
}

.drink-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}


.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: lowercase; 
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin-top: 8px;
    border-radius: 2px;
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.drink-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.drink-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(29, 51, 125, 0.08);
}

.card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.establishment-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.establishment-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-yellow);
    text-transform: uppercase;
}

.establishment-address {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}


.hours-badge {
    align-self: flex-start;
    background-color: var(--badge-bg);
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    line-height: 1.3;
    margin-top: auto; 
}

.hours-notice {
    font-weight: normal;
    font-size: 0.75rem;
    opacity: 0.85;
}


@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.75rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-light: #f6f9fe;
    --primary-blue: #1d337d;
    --accent-yellow: #f1c40f;
    --text-muted: #6a7682;
}

body {
    background-color: var(--bg-light);
}

.poi-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}


.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.title-underline {
    width: 75px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin-top: 8px;
    border-radius: 2px;
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.poi-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.poi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(29, 51, 125, 0.08);
}

.card-image {
    width: 100%;
    aspect-ratio: 4 / 2.6;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.poi-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
}

.poi-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}


.icon {
    width: 18px;
    height: 18px;
    fill: var(--primary-blue);
    opacity: 0.8;
    flex-shrink: 0;
}

.meta-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}


@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.75rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --footer-bg: #0b1d54;       
    --accent-yellow: #f1c40f;   
    --text-white: #ffffff;
    --text-muted: #abb4cd;      
    --input-bg: #152b6d;       
}


.main-footer {
    background-color: var(--footer-bg);
    color: var(--text-white);
    padding-top: 60px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 40px;
}


.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.col-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.brand-desc, .newsletter-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
}


.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--text-white);
}


.social-link.yt { background-color: #ff0000; }
.social-link.fb { background-color: #1877f2; }
.social-link.ig { background-color: #e1306c; }

.social-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}


.link-list, .contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-list a, .contact-list a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.link-list a:hover {
    color: var(--text-white);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.contact-icon {
    width: 16px;
    height: 16px;
    fill: var(--accent-yellow);
    margin-top: 2px;
    flex-shrink: 0;
}


.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.newsletter-form input {
    background-color: var(--input-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-white);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #6476a5;
}

.newsletter-form button {
    background-color: var(--accent-yellow);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.newsletter-form button:active {
    transform: scale(0.98);
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--text-white);
}


@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 440px;           
    aspect-ratio: 1 / 1;        
    border-radius: 40px;       
    overflow: hidden;           
    box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.3); 
}


.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;        
    display: block;
}