/* ========================
   CSS VARIABLES & RESET
   ======================== */
:root {
    --color-orange: #FF6B47;
    --color-blue: #00A8E8;
    --color-navy: #1A3A52;
    --color-beige: #F5F1E8;
    --color-white: #FFFFFF;
    --color-text: #2C3E50;
    --color-text-light: #6B7280;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(26, 58, 82, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 58, 82, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 58, 82, 0.16);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--color-beige) 0%, #E8DFD0 100%);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========================
   ANIMATED WAVES BACKGROUND
   ======================== */
.waves-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 300px;
    opacity: 0.15;
    border-radius: 50%;
}

.wave1 {
    background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-orange) 100%);
    animation: wave-animation 15s ease-in-out infinite;
    animation-delay: 0s;
}

.wave2 {
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-blue) 100%);
    animation: wave-animation 18s ease-in-out infinite;
    animation-delay: -5s;
    opacity: 0.1;
}

.wave3 {
    background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-blue) 100%);
    animation: wave-animation 22s ease-in-out infinite;
    animation-delay: -10s;
    opacity: 0.08;
}

@keyframes wave-animation {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(-25%) translateY(-20px) rotate(5deg);
    }
}

/* ========================
   MAIN CONTAINER
   ======================== */
.container {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========================
   LOGO SECTION
   ======================== */
.logo-section {
    text-align: center;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrapper {
    margin-bottom: 24px;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(var(--shadow-md));
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(var(--shadow-lg));
}

.tagline {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* ========================
   BUTTONS - BASE STYLES
   ======================== */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    padding: 16px 28px;
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

.btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* ========================
   PRIMARY BUTTON - LOCATION (ORANGE)
   ======================== */
.btn-primary {
    color: var(--color-white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-location {
    background: linear-gradient(135deg, var(--color-orange) 0%, #FF8C6B 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 71, 0.3);
}

.btn-location:hover {
    background: linear-gradient(135deg, #FF8C6B 0%, var(--color-orange) 100%);
    box-shadow: 0 12px 32px rgba(255, 107, 71, 0.4);
    transform: translateY(-2px);
}

/* ========================
   SOCIAL SECTION
   ======================== */
.social-section {
    width: 100%;
    max-width: 400px;
    margin-bottom: 24px;
    animation: fadeIn 1s ease-out 0.7s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.social-title {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-social {
    padding: 14px 20px;
    font-size: 0.9rem;
}

.btn-instagram {
    background: linear-gradient(135deg, #E4405F 0%, #9B2DFF 100%);
    color: var(--color-white);
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #9B2DFF 0%, #E4405F 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3);
}

.btn-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
    color: var(--color-white);
}

.btn-facebook:hover {
    background: linear-gradient(135deg, #0C63D4 0%, #1877F2 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

/* ========================
   WHATSAPP GREEN BUTTON
   ======================== */
.btn-whatsapp-green {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.8s both;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-green:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* ========================
   CONTACT SECTION - TRANSPARENT
   ======================== */
.contact-section {
    width: 100%;
    max-width: 400px;
    margin-bottom: 24px;
    animation: fadeIn 1s ease-out 0.9s both;
}

.contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-contact {
    padding: 14px 20px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn-contact:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 58, 82, 0.3);
}

/* ========================
   WEBSITE BUTTON - TRANSPARENT
   ======================== */
.btn-website {
    width: 100%;
    max-width: 400px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 1s both;
    cursor: not-allowed;
    opacity: 0.8;
}

.btn-website:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: none;
    box-shadow: var(--shadow-md);
}

/* ========================
   FOOTER
   ======================== */
.footer {
    text-align: center;
    padding: 24px 0;
    animation: fadeIn 1s ease-out 1.1s both;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 400;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 480px) {
    .container {
        padding: 30px 16px;
    }
    
    .logo {
        width: 160px;
        height: 160px;
    }
    
    .tagline {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .btn-icon {
        width: 22px;
        height: 22px;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .logo {
        width: 180px;
        height: 180px;
    }
}

/* ========================
   ACCESSIBILITY
   ======================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .logo-wrapper {
        animation: none;
    }
    
    .wave {
        animation: none;
    }
}

.btn:focus-visible {
    outline: 3px solid var(--color-orange);
    outline-offset: 2px;
}

/* ========================
   PRINT STYLES
   ======================== */
@media print {
    .waves-container {
        display: none;
    }

    body {
        background: white;
    }

    .btn {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* ========================
   BOOKING BUTTON - NAVY BLUE (OVERRIDE)
   ======================== */
a.btn.btn-booking {
    background: #1A3A52 !important;
    background-color: #1A3A52 !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 24px rgba(26, 58, 82, 0.3) !important;
    margin-bottom: 20px;
}

a.btn.btn-booking:hover {
    background: #2A4A62 !important;
    background-color: #2A4A62 !important;
    color: #FFFFFF !important;
    box-shadow: 0 12px 32px rgba(26, 58, 82, 0.4) !important;
    transform: translateY(-2px);
}
