/*
Theme Name: Sri Pool Villa
Theme URI: https://sripoolvilla.com
Description: Luxury coming soon page for Sri Pool Villa resort in Jaffna, Sri Lanka
Version: 2.0
Author: Sri Pool Villa
Author URI: https://sripoolvilla.com
*/

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

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    background: linear-gradient(135deg, #1a3a3a 0%, #2d4f4f 50%, #1f3d3d 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(125, 211, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 197, 101, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeIn 1.5s ease-in;
}

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

.logo-container {
    margin-bottom: 60px;
    animation: logoSlide 1.2s ease-out;
    position: relative;
    display: inline-block;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 85%;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 40%,
        transparent 70%);
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
}

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

.logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.1));
    position: relative;
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.status-badge {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #1a3a3a;
    background: linear-gradient(135deg, #7dd3fc 0%, #5BCEFA 100%);
    padding: 12px 35px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.3s both;
    box-shadow: 0 10px 30px rgba(125, 211, 252, 0.3);
}

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

h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #7dd3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.subtitle {
    font-size: 1.5rem;
    color: #F5C565;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.website-status {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 1s both;
}

.website-status i {
    color: #F5C565;
    margin-right: 8px;
}

.decorative-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7dd3fc, transparent);
    margin: 40px auto;
    animation: expandLine 1.5s ease-out 1.1s both;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 900px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.action-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(125, 211, 252, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.1) 0%, rgba(91, 206, 250, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.action-card:hover::before {
    opacity: 1;
}

.action-card:hover {
    transform: translateY(-8px);
    border-color: #7dd3fc;
    box-shadow: 0 20px 60px rgba(125, 211, 252, 0.25);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(91, 206, 250, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.card-icon i {
    font-size: 2rem;
    color: #7dd3fc;
    transition: all 0.4s ease;
}

.action-card:hover .card-icon {
    background: linear-gradient(135deg, #7dd3fc 0%, #5BCEFA 100%);
    transform: scale(1.1);
}

.action-card:hover .card-icon i {
    color: #1a3a3a;
    transform: scale(1.1);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.action-card:hover .card-title {
    color: #7dd3fc;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #7dd3fc;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.card-cta i {
    transition: transform 0.3s ease;
}

.action-card:hover .card-cta {
    color: #fff;
}

.action-card:hover .card-cta i {
    transform: translateX(5px);
}

.booking-card .card-icon {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(91, 206, 250, 0.1) 100%);
}

.location-card .card-icon {
    background: linear-gradient(135deg, rgba(245, 197, 101, 0.2) 0%, rgba(245, 197, 101, 0.1) 100%);
}

.location-card .card-icon i {
    color: #F5C565;
}

.location-card:hover .card-icon {
    background: linear-gradient(135deg, #F5C565 0%, #E5B555 100%);
}

.location-card:hover .card-icon i {
    color: #1a3a3a;
}

.location-card:hover .card-title,
.location-card:hover .card-cta {
    color: #F5C565;
}

.location-card:hover .card-cta {
    color: #fff;
}

.contact-info {
    margin-top: 60px;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.contact-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-text i {
    color: #7dd3fc;
    margin-right: 10px;
}

.social-links {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #7dd3fc;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .logo {
        max-width: 280px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .status-badge {
        font-size: 0.9rem;
        letter-spacing: 4px;
        padding: 10px 28px;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .action-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px auto;
    }

    .action-card {
        padding: 35px 25px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i {
        font-size: 1.8rem;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .contact-info {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 220px;
    }

    h1 {
        font-size: 2rem;
    }

    .status-badge {
        font-size: 0.8rem;
        letter-spacing: 3px;
        padding: 8px 24px;
    }

    .action-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .card-cta {
        font-size: 0.9rem;
    }
}