/**
 * The Savory Embassy - Holding Page Styles
 */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #369d86 0%, #2a7a68 50%, #1f5c4e 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

/* Floating decorative elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-elements span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 25s infinite;
}

.floating-elements span:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-elements span:nth-child(2) { left: 20%; animation-delay: 2s; width: 30px; height: 30px; }
.floating-elements span:nth-child(3) { left: 35%; animation-delay: 4s; }
.floating-elements span:nth-child(4) { left: 50%; animation-delay: 1s; width: 15px; height: 15px; }
.floating-elements span:nth-child(5) { left: 65%; animation-delay: 3s; width: 25px; height: 25px; }
.floating-elements span:nth-child(6) { left: 80%; animation-delay: 5s; }
.floating-elements span:nth-child(7) { left: 90%; animation-delay: 2.5s; width: 35px; height: 35px; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.holding-container {
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

h1 span {
    color: #f18721;
}

.tagline {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 30px;
    font-weight: 300;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.opening-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f18721;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(241, 135, 33, 0.3);
    animation: pulse 2s infinite;
}

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

.opening-badge i {
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #f18721;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: white;
    color: #369d86;
    transform: translateY(-5px);
}

/* Floating social on right side */
.floating-social {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.floating-social a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.floating-social a:hover {
    background: white;
    color: #369d86;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .holding-container {
        padding: 30px 20px;
    }

    .logo {
        width: 140px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1rem;
    }

    .opening-badge {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .floating-social {
        right: 15px;
    }

    .floating-social a {
        width: 45px;
        height: 45px;
    }
}
