@font-face {
    font-family: '29LT Bukra';
    src: url('29ltbukrabolditalic.ttf') format('truetype'),
         url('29ltbukrabolditalic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.logo {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 100;
    animation: fadeIn 1s ease-in-out;
}

.logo img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

.social-links {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
    animation: fadeInRight 1s ease-in-out 0.3s both;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-color: white;
    transform: translateX(-8px) scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.email {
    position: absolute;
    top: 40px;
    left: 50px;
    z-index: 100;
    animation: fadeInLeft 1s ease-in-out 0.5s both;
}

.email a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-family: '29LT Bukra', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    font-style: italic;
    padding: 8px 0;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.email a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.email i {
    font-size: 1.3rem;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .logo {
        top: 30px;
        right: 40px;
    }
    
    .logo img {
        width: 150px;
    }
    
    .social-links {
        right: 40px;
        gap: 18px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .email {
        left: 40px;
        top: 30px;
    }
    
    .email a {
        font-size: 1rem;
        padding: 11px 18px;
    }
}

@media (max-width: 768px) {
    .logo {
        top: 20px;
        right: 20px;
    }
    
    .logo img {
        width: 120px;
    }
    
    .social-links {
        right: 20px;
        gap: 15px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .email {
        top: 20px;
        left: 20px;
    }
    
    .email a {
        font-size: 0.95rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        top: 15px;
        right: 15px;
    }
    
    .logo img {
        width: 100px;
    }
    
    .social-links {
        right: 15px;
        gap: 12px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .email {
        top: 15px;
        left: 15px;
    }
    
    .email a span {
        display: none;
    }
    
    .email a {
        padding: 5px 0;
        gap: 0;
    }
    
    .email i {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .logo img {
        width: 85px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .email a {
        width: 36px;
        height: 36px;
    }
    
    .email i {
        font-size: 0.95rem;
    }
}

