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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Top Widget */
#top-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    color:#6b7280;
    font-size: 0.85rem;
}

#top-widget .left {
    text-align: left;
}

#top-widget .right {
    text-align: right;
}

span#weather-temp,span#weather-temp-m {
    font-weight: 600;
    color:#111827;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Desktop Layout */
.desktop-layout {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-layout {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    
    .tablet-layout,
    .mobile-layout {
        display: none;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    grid-auto-rows: 180px;
}

.grid-item {
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-box {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 1px solid #f3f4f6;
    animation: fadeInScale 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.logo {
    width: 100%;
    max-width: 24rem;
    margin-bottom: 2rem;
}

div.desktop-layout div.logo-box img {
    object-fit: contain;
}

/* Booking & Maps Buttons Row */
.buttons-row {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    max-width: 28rem;
    animation: fadeInScale 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    margin-bottom:10px;
}

.btn-booking,
.btn-maps,
.btn-airbnb1,
.btn-airbnb2 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    /*padding: 0 1.25rem;*/
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 0.5rem;
    box-sizing: border-box;
}

.buttons-row img,
.buttons-row svg {
    height: 1.5rem;
    width: auto;
}

.btn-booking {
    background-color: #003580;
    box-shadow: 0 4px 14px 0 rgba(0, 53, 128, 0.39);
}

.btn-booking:hover,
.btn-maps:hover,
.btn-airbnb1:hover,
.btn-airbnb2:hover {
    transform: translateY(-2px) scale(1.05);
}

.btn-booking:hover {
    box-shadow: 0 8px 24px 0 rgba(0, 53, 128, 0.5);
}

.btn-booking svg,
.btn-airbnb1 svg,
.btn-airbnb2 svg {
    height: 1.25rem;
}

.btn-maps {
    background-color: #1E90FF;
    box-shadow: 0 4px 14px 0 rgba(30, 144, 255, 0.39);
}

.btn-maps:hover {
    box-shadow: 0 8px 24px 0 rgba(30, 144, 255, 0.5);
}

.btn-maps svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-airbnb1,
.btn-airbnb2 {
    background-color: #FF5A5F;
    box-shadow: 0 4px 14px 0 rgba(255, 90, 95, 0.39);
}

.btn-airbnb1:hover,
.btn-airbnb2:hover {
    box-shadow: 0 8px 24px 0 rgba(255, 90, 95, 0.5);
}

.btn-airbnb1,
.btn-airbnb2 {
    background-color: #FF5A5F;
    box-shadow: 0 4px 14px 0 rgba(255, 90, 95, 0.39);
    gap: 0.5rem;
}

.btn-airbnb1:hover,
.btn-airbnb2:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px 0 rgba(255, 90, 95, 0.5);
}

/* Footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    animation: fadeInScale 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.footer-text {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
}

.footer-text .bold {
    font-weight: 600;
    color: #111827;
}

.footer-country-icon {
    display: inline-block;
    height: 1.2em;
    width: auto;
    vertical-align: middle;
}

.footer-text .address {
    color: #006ce4;
}

.phone {
    display: inline-block;
    position: relative;
}

.phone a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #1E90FF;
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.08), rgba(30, 144, 255, 0.04));
    border: 1px solid rgba(30, 144, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.phone a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(30, 144, 255, 0.08));
    transition: left 0.4s ease;
    z-index: -1;
}

.phone a:hover::before {
    left: 0;
}

.phone a:hover {
    color: #005fd6;
    border-color: rgba(30, 144, 255, 0.4);
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.12), rgba(30, 144, 255, 0.08));
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.15);
    transform: translateY(-2px) scale(1.02);
}

.phone a:active {
    transform: translateY(0) scale(0.98);
}

.footer-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    color: #6b8fa6;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    background: linear-gradient(135deg, rgba(107, 143, 166, 0.08), rgba(107, 143, 166, 0.04));
    border: 1px solid rgba(107, 143, 166, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.footer-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 143, 166, 0.15), rgba(107, 143, 166, 0.08));
    transition: left 0.4s ease;
    z-index: -1;
}

.footer-button:hover::before {
    left: 0;
}

.footer-button:hover {
    color: #536d82;
    border-color: rgba(107, 143, 166, 0.4);
    background: linear-gradient(135deg, rgba(107, 143, 166, 0.12), rgba(107, 143, 166, 0.08));
    box-shadow: 0 4px 12px rgba(107, 143, 166, 0.15);
    transform: translateY(-2px) scale(1.02);
}

.footer-button:active {
    transform: translateY(0) scale(0.98);
}

.footer-button .arrow {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-button:hover .arrow {
    transform: translateX(0.25rem);
}

/* Grid column and row spans */
.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.row-1 { grid-row: span 1; }
.row-2 { grid-row: span 2; }
.row-3 { grid-row: span 3; }

/* Animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-35 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }
.delay-9 { animation-delay: 0.9s; }
.delay-10 { animation-delay: 1.0s; }
.delay-11 { animation-delay: 1.1s; }
.delay-12 { animation-delay: 1.2s; }
.delay-13 { animation-delay: 1.3s; }

/* Hover pan effects for tall columns */
.hover-pan-left img {
    width: 250%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-26%);
    transition: transform 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.hover-pan-left:hover img {
    transform: translateX(-56%);
}

.hover-pan-right img {
    width: 140%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-12%);
    transition: transform 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.hover-pan-right:hover img {
    transform: translateX(-29%);
}

/* Tablet Layout */
.tablet-layout {
    display: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .tablet-layout {
        display: block;
    }
    
    .desktop-layout,
    .mobile-layout {
        display: none;
    }
}

.container-tablet {
    padding: 1.5rem;
}

.grid-tablet {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    grid-auto-rows: 150px;
}

.logo-tablet {
    max-width: 280px;
    margin-bottom: 1.5rem;
}

div.tablet-layout div.logo-box img {
    object-fit: contain;
}

.buttons-row-tablet {
    max-width: 340px;
    gap: 0.625rem;
}

.btn-tablet {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
}

.btn-tablet svg {
    height: 1rem;
}

.btn-maps.btn-tablet svg {
    width: 1rem;
    height: 1rem;
}

.footer-tablet {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-tablet .footer-text {
    font-size: 0.875rem;
    text-align: center;
}

.footer-tablet .footer-button {
    font-size: 0.875rem;
    padding: 0.4rem 0.8rem;
}

.footer-tablet .footer-button .arrow {
    width: 0.875rem;
    height: 0.875rem;
}

.footer-tablet .phone a {
    padding: 0.35rem 0.7rem;
    font-size: 0.9rem;
}

/* Mobile Layout */
.mobile-layout {
    display: block;
}

@media (min-width: 768px) {
    .mobile-layout {
        display: none;
    }
}

.container-mobile {
    padding: 1rem;
}

.logo-box-mobile {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f3f4f6;
    animation: fadeInScale 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.logo-mobile {
    max-width: 260px;
    margin-bottom: 1.5rem;
}

.buttons-row-mobile {
    max-width: 100%;
    gap: 0.625rem;
}

.btn-mobile {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
}

.btn-mobile svg {
    height: 1rem;
}

.btn-maps.btn-mobile svg {
    width: 1rem;
    height: 1rem;
}

.btn-mobile:active {
    transform: scale(0.95);
}

.footer-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-mobile .footer-text {
    font-size: 0.75rem;
    text-align: center;
}

.footer-mobile .footer-button {
    font-size: 0.875rem;
    padding: 0.4rem 0.8rem;
}

.footer-mobile .footer-button .arrow {
    width: 0.75rem;
    height: 0.75rem;
}

.footer-mobile .phone a {
    padding: 0.3rem 0.6rem;
    font-size: 0.85rem;
    border-radius: 0.375rem;
}

.grid-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    grid-auto-rows: 140px;
}
