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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(113, 83, 66, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(168, 144, 121, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    text-align: center;
    max-width: 900px;
    padding: 3rem;
    background: rgba(113, 83, 66, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(168, 144, 121, 0.6);
    position: relative;
    z-index: 1;
}

.logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.8));
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 300;
    letter-spacing: 3px;
    color: #A89079;
    font-style: italic;
}

.coming-soon {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-style: italic;
    color: #ffffff;
    letter-spacing: 1px;
}

.menu-btn {
    background: linear-gradient(135deg, #715342, #A89079, #8B6F47);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto 3rem auto;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(113, 83, 66, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(113, 83, 66, 0.6);
    background: linear-gradient(135deg, #A89079, #715342, #8B6F47);
}

.menu-icon {
    width: 24px;
    height: 24px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 0;
    width: 95%;
    max-width: 900px;
    max-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-pdf {
    width: 100%;
    height: 90vh;
    border-radius: 20px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(113, 83, 66, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(168, 144, 121, 0.5);
}

.close:hover {
    background: rgba(113, 83, 66, 1);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    padding: 1rem;
    background: rgba(168, 144, 121, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(168, 144, 121, 0.2);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #A89079;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.contact-item:not(.address) a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.contact-item:hover .contact-icon {
    color: #ffffff;
}

.contact-item span {
    text-align: center;
    line-height: 1.4;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    text-decoration: none;
    color: #715342;
    transition: all 0.4s ease;
    border: 2px solid rgba(168, 144, 121, 0.4);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(113, 83, 66, 0.1);
}

.social-link:hover {
    background: #A89079;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(113, 83, 66, 0.3);
    border-color: rgba(168, 144, 121, 0.8);
}

.social-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.footer {
    margin-top: 3rem;
    font-size: 1rem;
    opacity: 0.8;
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 144, 121, 0.5);
}

.dev {
    color: inherit;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .logo {
        max-width: 280px;
    }

    .menu-btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        margin-bottom: 2.5rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 1% auto;
    }
    
    .modal-pdf {
        height: 95vh;
    }
    
    .close {
        top: 15px;
        right: 20px;
        font-size: 35px;
        width: 50px;
        height: 50px;
    }

    .contact-item {
        font-size: 1.1rem;
        padding: 0.8rem;
    }

    .social-links {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .social-link {
        padding: 0.8rem 1.2rem;
    }

    .coming-soon {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .logo {
        max-width: 240px;
        margin-bottom: 2rem;
    }

    .menu-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .modal-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .modal-pdf {
        height: 100vh;
        border-radius: 0;
    }

    .close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 45px;
        height: 45px;
    }

    .contact-item {
        font-size: 1rem;
        padding: 0.6rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }

    .coming-soon {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .footer {
        margin-top: 2rem;
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: fadeInUp 1s ease-out;
}

.container > *:nth-child(1) {
    animation-delay: 0.1s;
}

.container > *:nth-child(2) {
    animation-delay: 0.3s;
}

.container > *:nth-child(3) {
    animation-delay: 0.5s;
}

.container > *:nth-child(4) {
    animation-delay: 0.7s;
}

.container > *:nth-child(5) {
    animation-delay: 0.9s;
}

.container > *:nth-child(6) {
    animation-delay: 1.1s;
}

.container > *:nth-child(7) {
    animation-delay: 1.3s;
}

.container > *:nth-child(8) {
    animation-delay: 1.5s;
}