/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&family=Montserrat:wght@300;400;500&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Prevent scrolling */
    font-family: 'Libre Bodoni', serif;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Video Background */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Even darker overlay */
    z-index: -1;
}

/* Main Container */
.container {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    z-index: 1;
}

/* Main Heading */
h1 {
    font-family: 'Libre Bodoni', serif;
    font-weight: 700;
    /* Bold */
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.05em;
    text-align: center;
    /* text-transform: uppercase; Removed */
    animation: fadeIn 2s ease-out;
    /* text-shadow: 0 2px 4px rgba(0,0,0,0.3); Removed */
}

h2 {
    font-family: 'Libre Bodoni', serif;
    font-style: italic;
    font-weight: 100;
    /* Regular Italic */
    font-size: clamp(2rem, 5vw, 4rem);
    margin-top: -0.5rem;
    animation: fadeIn 2s ease-out 0.2s backwards;
}

/* Footer Section */
.footer {
    position: absolute;
    bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    width: 100%;
    animation: fadeIn 2s ease-out 0.5s backwards;
    /* Slight delay */
}

.address {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    /* Slighly smaller for sans-serif */
    letter-spacing: 0.1em;
    /* Increased spacing for modern look */
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.5;
    /* 90% opacity */
    /* 70% opacity */
}

.address:hover {
    opacity: 1;
    /* Restore opacity on hover */
    /* Restore opacity on hover */
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.email {
    font-size: clamp(0.8rem, 1.3vw, 1rem);
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    /* text-transform: uppercase; Removed */
    letter-spacing: 0.1em;
    opacity: 0.5;
    /* Reset border for icon */
    border-bottom: none;
}

.social-link svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    transition: transform 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    border-bottom: none;
    /* transform: translateY(-2px); Moved to svg */
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    justify-content: center;
    align-items: center;
    animation: fadeIn 2s ease-out 0.8s backwards;
    /* Slight delay after footer */
}

.icon-link {
    color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    transform: scale(1.2);
    opacity: 1;
}

.icon-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    /* Use fill for solid icons */
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-height: 500px) {
    .container {
        justify-content: flex-start;
        padding-top: 4rem;
    }

    .footer {
        position: relative;
        bottom: auto;
        margin-top: auto;
        padding-bottom: 1rem;
    }
}