/*
    ============================================================================
    PROJECT:     Pine Hotel - Coming Soon Page
    FILE:        styles.css
    DESCRIPTION: Main stylesheet for Pine Hotel coming soon page
                 Includes responsive design, animations, and modern UI elements
    AUTHOR:      Vegim Rexhepi
    DATE:        December 2025
    VERSION:     1.0.0
    ============================================================================
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pine-green: #2d5016;
    --forest-green: #3d6b1f;
    --sage-green: #6b8e4f;
    --light-green: #a8c88a;
    --cream: #f5f1e8;
    --warm-white: #faf9f6;
    --brown: #5d4037;
    --dark-brown: #3e2723;
    --gold: #d4af37;
    --text-dark: #2c2c2c;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    /*overflow-x: hidden;*/
    /*min-height: 100vh;*/
    height:100%;
    background: 
        radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(61, 107, 31, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #f8f6f2 0%, #f0ede6 25%, #e8e4dc 50%, #f0ede6 75%, #f8f6f2 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    position: relative;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(107, 142, 79, 0.03) 0%, transparent 60%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.01) 2px,
            rgba(0, 0, 0, 0.01) 4px
        );
    background-size: 100% 100%, 100% 100%, 100% 8px;
    z-index: 0;
    opacity: 1;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

.header {
    padding: 2.5rem 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInDown 1s ease-out;
}

.logo-image {
    max-width: 220px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.02);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.coming-soon-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
}

.hero-section {
    position: relative;
    z-index: 3;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pine-green);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--sage-green);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
    animation: expandWidth 1.5s ease-out 0.5s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.discover-pine {
    margin: 1.5rem 0 2rem;
    animation: fadeIn 1s ease-out 0.8s both;
}

.discover-text {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pine-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.5rem;
    cursor: default;
}

.discover-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.discover-text:hover::after {
    width: 100%;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInScale 1s ease-out both;
}

.countdown-item:nth-child(1) { animation-delay: 0.6s; }
.countdown-item:nth-child(2) { animation-delay: 0.7s; }
.countdown-item:nth-child(3) { animation-delay: 0.8s; }
.countdown-item:nth-child(4) { animation-delay: 0.9s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.5rem;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    opacity: 0.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
    animation: fadeIn 1s ease-out both;
}

.contact-item:nth-child(1) { animation-delay: 1s; }
.contact-item:nth-child(2) { animation-delay: 1.1s; }
.contact-item:nth-child(3) { animation-delay: 1.2s; }
.contact-item:nth-child(4) { animation-delay: 1.3s; }

.contact-item .icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-label {
    font-weight: 500;
    opacity: 0.8;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--pine-green);
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeIn 1s ease-out 1.3s both;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.footer {
    padding: 2rem;
    text-align: center;
    color: var(--text-dark);
    opacity: 0.6;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.mountain-decoration {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.mountains {
    width: 100%;
    height: 100%;
}

.mountains path {
    fill: var(--sage-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        max-width: 300px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .logo-image {
        max-width: 250px;
    }

    .main-content {
        padding: 1rem;
    }

    .title {
        font-size: 2rem;
    }
    
    .mountain-decoration {
        bottom: -30px;
        height: 150px;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 0.8rem 1rem;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }
}

/* Subtle texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(107, 142, 79, 0.015) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

