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

:root {
    --primary: #1a1a2e;
    --accent: #16213e;
    --gold: #d4af37;
    --off-white: #f8f9fa;
    --black: #000;
    --white: #fff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito Sans', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section */
.section {
    padding: 4rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--accent);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background-color: rgba(26, 26, 46, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--white);
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

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

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

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

.nav-menu {
    display: none;
    list-style: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary);
    padding: 2rem 1rem;
    gap: 1.5rem;
}

.nav-menu.active {
    display: flex;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    transform: translateX(5px);
}

.nav-link.cta-button {
    background-color: var(--gold);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: none;
    text-align: center;
    margin-top: 0.5rem;
}

.nav-link.cta-button:hover {
    background-color: var(--white);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.7) 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

/* About Section */
.about {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 1) 50%, rgba(248, 249, 250, 0.98) 100%),
                linear-gradient(to bottom, rgba(26, 26, 46, 0.02) 0%, rgba(22, 33, 62, 0.01) 100%);
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0.95) 100%),
                linear-gradient(to bottom, rgba(212, 175, 55, 0.05) 0%, rgba(26, 26, 46, 0.02) 100%);
    background-color: var(--off-white);
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    margin-top: 2rem;
}

.highlight-box p {
    margin-bottom: 0.5rem;
}

.about-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.about-features ul {
    list-style: none;
    margin-bottom: 1rem;
}

.about-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.about-features .note {
    font-style: italic;
    color: var(--accent);
    margin-top: 1rem;
}

/* Rooms Section */
.rooms {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 1) 0%, rgba(255, 255, 255, 0.98) 50%, rgba(248, 249, 250, 1) 100%),
                linear-gradient(to bottom, rgba(22, 33, 62, 0.02) 0%, rgba(26, 26, 46, 0.01) 100%);
    background-color: var(--off-white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.room-card {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.98) 100%),
                linear-gradient(to bottom, rgba(26, 26, 46, 0.015) 0%, rgba(22, 33, 62, 0.01) 100%);
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.room-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.room-size,
.room-capacity {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.rooms-info {
    text-align: center;
    color: var(--accent);
    font-size: 1.125rem;
}

.rooms-info p {
    margin-bottom: 0.5rem;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.95) 50%, rgba(255, 255, 255, 1) 100%),
                linear-gradient(to bottom, rgba(26, 26, 46, 0.02) 0%, rgba(22, 33, 62, 0.01) 100%);
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 1) 0%, rgba(255, 255, 255, 0.98) 100%),
                linear-gradient(to bottom, rgba(212, 175, 55, 0.03) 0%, rgba(26, 26, 46, 0.01) 100%);
    background-color: var(--off-white);
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.service-card p {
    color: var(--accent);
}

/* Gallery Section */
.gallery {
    background-color: var(--off-white);
}

.gallery-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
}

.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 26, 46, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.gallery-btn:hover {
    background-color: var(--gold);
    color: var(--primary);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-btn svg {
    width: 24px;
    height: 24px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(26, 26, 46, 0.8);
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.97) 50%, rgba(255, 255, 255, 1) 100%),
                linear-gradient(to bottom, rgba(26, 26, 46, 0.02) 0%, rgba(22, 33, 62, 0.015) 100%);
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    width: 100%;
    text-align: left;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.contact-column-left,
.contact-column-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-address {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-whatsapp,
.btn-viber {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-viber {
    background-color: #665CAC;
    color: var(--white);
}

.btn-viber:hover {
    background-color: #5A4F9C;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 92, 172, 0.4);
}

.btn-whatsapp svg,
.btn-viber svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.location-highlights {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0.96) 100%),
                linear-gradient(to bottom, rgba(22, 33, 62, 0.03) 0%, rgba(26, 26, 46, 0.01) 100%);
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.location-highlights p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a,
.footer-bottom a:hover,
.footer-bottom a:active,
.footer-bottom a:visited,
.footer-bottom a:focus {
    color: var(--gold);
    text-decoration: none;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.98) 100%),
                linear-gradient(to bottom, rgba(26, 26, 46, 0.02) 0%, rgba(22, 33, 62, 0.01) 100%);
    background-color: var(--white);
    border-radius: 8px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(50px);
    transition: var(--transition);
    z-index: 2001;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: var(--primary);
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.modal-body img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: static;
        background: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-link {
        border-bottom: none;
        padding: 0;
    }

    .nav-link.cta-button {
        margin-top: 0;
    }

    .about-content {
        flex-direction: row;
    }

    .about-text {
        flex: 1;
    }

    .about-features {
        flex: 1;
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-slide img {
        height: 500px;
    }

    .contact-content {
        max-width: 1200px;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-info h3 {
        font-size: 2.5rem;
        grid-column: 1 / -1;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles */
@media (min-width: 1280px) {
    .section-title {
        font-size: 4.5rem;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .rooms-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-slide img {
        height: 600px;
    }

    .contact-content {
        max-width: 1200px;
    }

    .contact-info {
        gap: 5rem;
    }

    .contact-info h3 {
        font-size: 3rem;
    }

    .contact-address,
    .contact-details {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .modal-content {
        max-width: 800px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

