/* Regular */
@font-face {
    font-family: 'Amandine';
    src: url('./fonts/Amandine_Regular.otf') format('opentype');
    font-weight: 400; /* Regular weight */
    font-style: normal;
    font-display: swap;
}
/* Italic */
@font-face {
    font-family: 'Amandine';
    src: url('./fonts/Amandine_Italic.otf') format('opentype');
    font-weight: 400; /* Regular weight */
    font-style: italic;
    font-display: swap;
}
/* Light */
@font-face {
    font-family: 'Amandine';
    src: url('./fonts/Amandine_Light.otf') format('opentype');
    font-weight: 300; /* Light weight */
    font-style: normal;
    font-display: swap;
}
/* Light Italic */
@font-face {
    font-family: 'Amandine';
    src: url('./fonts/Amandine_Light_Italic.otf') format('opentype');
    font-weight: 300; /* Light weight */
    font-style: italic;
    font-display: swap;
}
/* Medium */
@font-face {
    font-family: 'Amandine';
    src: url('./fonts/Amandine_Medium.otf') format('opentype');
    font-weight: 500; /* Medium weight */
    font-style: normal;
    font-display: swap;
}
/* Medium Italic */
@font-face {
    font-family: 'Amandine';
    src: url('./fonts/Amandine_Medium_Italic.otf') format('opentype');
    font-weight: 500; /* Medium weight */
    font-style: italic;
    font-display: swap;
}
/* Bold */
@font-face {
    font-family: 'Amandine';
    src: url('./fonts/Amandine_Bold.otf') format('opentype');
    font-weight: 700; /* Bold weight */
    font-style: normal;
    font-display: swap;
}
/* Bold Italic */
@font-face {
    font-family: 'Amandine';
    src: url('./fonts/Amandine_Bold_Italic.otf') format('opentype');
    font-weight: 700; /* Bold weight */
    font-style: italic;
    font-display: swap;
}
/* --- End Font Setup --- */

/* --- Basic Reset & Defaults --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
     height: 100%; /* Ensure html takes full height */
     overflow: hidden; /* Prevent scrolling on html element */
}

body {
    height: 100vh; /* Use fixed viewport height */
    width: 100%;
    /* Explicitly prevent scrolling on body */
    overflow: hidden;
    /* Use Amandine font, with serif as a fallback */
    font-family: 'Amandine', serif;
    /* Default weight - adjust if needed */
    font-weight: 300; /* Defaulting to Light based on original design */

    /* General Styles */
    color: #333;
    line-height: 1.6;

    /* --- Background Image Setup --- */
    background-color: #f8f8f6; /* Fallback color */
    background-image: url('./images/mopax-kozmetik.png'); /* Desktop image */
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
/* --- Layout --- */
.container {
    display: flex;
    flex-direction: column;
    /* Adjust vertical alignment - use flex-start to push towards top */
    justify-content: flex-start;
    align-items: center; /* Center content horizontally */
    text-align: center;
}

/* --- Content Styling (Opacity set to 0 initially for GSAP) --- */
.logo {
    font-family: 'Amandine', serif;
    font-weight: 300;
    color: #2c2c2c;
    opacity: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); 
}

.subtitle {
     /* Explicitly set font family */
    font-family: 'Amandine', serif;
     /* Use Regular weight for subtitle */
    font-weight: 400;
    color: #555;
    opacity: 0;
}

.contact-info {
    /* Explicitly set font family */
    font-family: 'Amandine', serif;
    /* Use Regular weight for contact info */
    font-weight: 400;
    color: #777;
     opacity: 0;
}

.contact-info a,
.contact-info span {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #333;
}

/* --- Responsiveness --- */
@media (min-width: 1441px) {
    body {
        background-position: center 60%;
    }
     .logo {
    margin-top: 0px;
    font-size: 12rem;
    letter-spacing: 60px;
     }
     .subtitle {
        font-size: 3.5rem;
        letter-spacing: 12px;
        margin-top: -85px;
     }
     .contact-info {
     font-size: 1rem;
     letter-spacing: 2px;
    }
    .contact-info a,
.contact-info span {
    margin-bottom: -10px;
}
    }
@media (min-width: 1025px) and (max-width: 1440px) {
     .logo {
        font-size: 8rem;
    letter-spacing: 35px;
    margin-top:10px;
     }
     .subtitle {
        font-size: 2rem;
        letter-spacing: 8px;
        margin-top: -50px;
     }
     .contact-info {
     font-size: 1rem;
     letter-spacing: 2px;
    }
    .contact-info a,
.contact-info span {
    margin-bottom: -10px;
}
    }
@media (min-width: 769px) and (max-width: 1024px) {
    .logo {
        font-size: 6rem;
    letter-spacing: 20px;
    margin-top:100px;
     }
     .subtitle {
        font-size: 1.5rem;
        letter-spacing: 5px;
        margin-top: -35px;
     }
     .contact-info {
     font-size: 0.75rem;
     letter-spacing: 1px;
     transform: translateY(20px);
    }
    .contact-info a,
.contact-info span {
    margin-bottom: -6px;
}
    }
@media (min-width: 571px) and (max-width: 768px) {
     body {
        background-image: url('./images/mopax-kozmetik-mobile.png');
        background-size: cover;
        background-position: center 50%;
    }
    .logo {
    font-size: 4rem;
    letter-spacing: 15px;
    margin-top:100px;
}
.subtitle {
        font-size: 1rem;
        letter-spacing: 4px;
        margin-top: -25px;
     }
     .contact-info {
     font-size: 0.65rem;
     letter-spacing: 1px;
    padding-top: 10px;
    }
    .contact-info a,
.contact-info span {
    margin-bottom: -5px;
}
}

@media (min-width: 375px) and (max-width: 570px) {
    body {
        background-image: url('./images/mopax-kozmetik-mobile.png');
        background-size: cover;
    }
    .logo {
    margin-top: 175px;
    font-size: 3rem;
    letter-spacing: 10px;
}
.subtitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
        margin-top: -10px;
     }
     .contact-info {
     font-size: 0.50rem;
     letter-spacing: 1px;
    padding-top: 10px;
    }
    .contact-info a,
.contact-info span {
    margin-bottom: -5px;
}
}
@media (max-width: 374px) {
    body {
        background-image: url('./images/mopax-kozmetik-mobile.png');
        background-size: cover;
    }
    .logo {
    margin-top: 150px;
    font-size: 2.5rem;
    letter-spacing: 5px;
}
.subtitle {
        font-size: 0.5rem;
        letter-spacing: 2px;
        margin-top: -5px;
     }
     .contact-info {
     font-size: 0.25rem;
     letter-spacing: 1px;
    padding-top: 10px;
    }
    .contact-info a,
.contact-info span {
    margin-bottom: 0px;
}
}
@media (max-width: 1190px) {
    body{
        background-size:cover;
    }
    }