/* Mobile-specific styles - 375px width */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(0, 35, 111);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    width: 375px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Font faces */
@font-face {
    font-family: 'Roca Two';
    src: local('Roca Two Bold'),
         url('../../fonts/fonnts.com-Roca_Two_Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce Two';
    src: local('Open Sauce Two SemiBold'),
         url('../../fonts/OpenSauceTwo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Decalotype';
    src: url('../../fonts/Decalotype-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(0, 35, 111, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.logo {
    font-family: 'Roca Two', sans-serif;
    color: #FFD700;
    font-size: 24px;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

/* Hamburger Menu */
.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 60px);
    background-color: rgba(0, 25, 80, 0.98);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.nav-list {
    list-style: none;
    padding: 20px 0;
}

.nav-list li {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-list a {
    display: block;
    padding: 18px 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-list a:hover,
.nav-list a:active {
    background-color: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding-left: 30px;
}

/* Main Content */
.mobile-main {
    padding: 0;
}

/* Hero Section */
.hero-mobile {
    padding: 5px 20px 40px;
    text-align: left;
}

.heading-with-like {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
    padding-right: 15px;
}

.hero-mobile h1 {
    font-family: 'Roca Two', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.1;
    color: #FFD700;
    margin-bottom: 0;
    flex: 1;
}

.like-button {
    background: none;
    border: none;
    cursor: pointer;
    width: 18px;
    height: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.like-button:active {
    transform: scale(1.2);
}

.like-button img {
    width: 100%;
    height: 100%;
}

.hero-sub {
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 8px;
}

.location {
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 25px;
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.location-link {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer;
}

.back-link {
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 0;
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-align: center;
}

.back-link a {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer;
}

/* CTA Section */
.cta-section {
    padding: 15px 20px 40px;
    text-align: left;
}

.cta-heading {
    font-family: 'Roca Two', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.cta-subheading {
    font-family: 'Roca Two', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFD700;
    margin: 0;
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.whatsapp-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.whatsapp-text {
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-size: 20px;
    color: #ffffff;
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.phone-contact {
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-size: 15px;
    color: #ffffff;
    opacity: 0.8;
    margin-top: 12px;
    margin-bottom: 8px;
    margin-left: 0;
    padding-left: 12px;
}

.phone-number {
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-size: 15px;
    margin: 0;
    margin-left: 0;
    padding-left: 12px;
}

.phone-link {
    color: #FFD700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.back-to-top {
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-size: 13px;
    color: #ffffff;
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-align: right;
    margin-top: 20px;
    margin-bottom: 0;
}

.back-to-top a {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer;
}

/* Footer */
.site-footer {
    background-color: rgba(0, 25, 80, 0.5);
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
}

.copyright {
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.8;
    margin: 0 0 20px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-links a {
    display: block;
    transition: opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.made-in {
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-size: 13px;
    color: #FFD700;
    margin: 0;
}

.hero-sub .underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}



.button-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.button-row .left-container {
    flex: 0 0 auto;
}

.button-row .right-container {
    flex: 1;
}

.button-row .text-container {
    width: 100%;
}

.button-row .text-container p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
}

/* CTA Button */
.cta-button {
    font-family: 'Decalotype', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #ffffff;
    color: rgb(0, 35, 111);
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: scale(0.98);
    background-color: #f4f6fb;
}

/* Video Section */
.video-section {
    margin-top: 0;
    padding-bottom: 20px;
}

.video-wrapper {
    width: 100%;
    height: calc((375px * 9 / 16) * 2 - 100px);
    border-radius: 0;
    overflow: hidden;
    background: #000;
    box-shadow: none;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-caption {
    color: #fff;
    margin-bottom: 15px;
    padding: 15px 20px 0;
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
    opacity: 0.9;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent pull-to-refresh on mobile */
body {
    overscroll-behavior-y: contain;
}

/* Yellow, underlined link in button row */
.button-row .underline {
    color: #FFD700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.button-row .underline:active {
    opacity: 0.8;
}

/* Hotel Details Section */
.hotel-details {
    padding: 20px 20px 40px;
    text-align: left;
}

.hotel-details p {
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Photo Slideshow */
.photo-slideshow {
    padding: 0 20px 40px;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 345px;
    aspect-ratio: 4 / 3;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #FFD700;
    border: none;
    font-size: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
}

.slide-btn:active {
    background: rgba(0, 0, 0, 0.8);
}

.slide-btn.prev {
    left: 10px;
}

.slide-btn.next {
    right: 10px;
}

.slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #FFD700;
}

/* What to Expect Section */
.what-to-expect {
    padding: 15px 20px 40px;
    text-align: left;
}

.what-to-expect h2 {
    font-family: 'Roca Two', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 12px;
}

.what-to-expect ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-to-expect li {
    font-family: 'Open Sauce Two', 'Open Sauce Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.what-to-expect li:before {
    content: '•';
    color: #FFD700;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.what-to-expect .menu-link {
    color: #FFD700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* Map Section */
.map-section {
    padding: 15px 20px 40px;
}

.map-section h2 {
    font-family: 'Roca Two', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 12px;
}

.map-container {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
