@font-face {
    font-family: 'CenturyGothic';
    src: url('assets/fonts/CenturyGothic.2d0c102054971b9ad45e1b1b6c.7430f9fc645880ee291c144948c10464.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CenturyGothic';
    src: url('assets/fonts/CenturyGothicIt.99080b51e743b18bc9ccf67e.215f9a8ec0bb0d2a611408fcd9bcfb49.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'CenturyGothic';
    src: url('assets/fonts/CenturyGothicLt.789a71208339565317e4c280.3626639405f957bc6e2f96dfa019b733.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CenturyGothic';
    src: url('assets/fonts/CenturyGothicBd.ea18dd96882525336169584c.02295dbcea1630912b0d168b9d8e2d39.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --dark-blue: #090a2c;
    --light-gray: #f4f4f4;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
}

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

body {
    font-family: 'CenturyGothic', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
.greek-text,
.english-text {
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 999;
}

.hero-logo-img {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo-img {
    max-width: 250px;
    height: auto;
}

/* Hero Section */
.hero-section {
    display: flex;
    min-height: 75vh;
    width: 100%;
    position: relative;
}

.hero-left {
    flex: 100%;
    background-image: url(assets/hero.avif);
    background-size: 130%;
    background-position: 50% 65%;
    position: relative;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-left::after {
    left: 0;
    top: 0;
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: #00000042;
}

/* Gradient overlay to make the white logo pop more */
.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.hero-right {
    flex: 32%;
    background-color: var(--dark-blue);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 3rem;
    text-align: center;
}

.login-content {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.divider {
    border: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.5);
    width: 100%;
    margin: 2.5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 2.5rem;
}

.btn-light {
    background-color: white;
    color: var(--dark-blue);
}

.btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--dark-blue);
    color: white;
}

.btn-dark:hover {
    background-color: #16174a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 10, 44, 0.2);
}

/* Footer Section */
.site-footer {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
    color: var(--text-dark);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 180px;
}

.retail-col {
    text-align: center;
    flex: 1.5;
}

.retail-col .greek-text,
.retail-col .english-text {
    font-size: 0.9rem;
    color: var(--dark-blue);
}

.retail-col .divider.small {
    width: 70%;
    margin: 1rem auto;
    border-top: 1px dashed var(--dark-blue);
}

.contact-col {
    padding-top: 0.5rem;
}

.contact-col ul {
    list-style: none;
}

.contact-col li {
    display: flex;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.4;
}

.contact-col i {
    margin-right: 12px;
    margin-top: 3px;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.contact-col .indent {
    margin-left: 26px;
}

.company-col h4,
.newsletter-col h4 {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.company-col ul {
    list-style: none;
}

.company-col li {
    margin-bottom: 0.5rem;
}

.company-col a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.company-col a:hover {
    color: var(--dark-blue);
}

.newsletter-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #aaa;
    background: transparent;
    padding: 8px 0;
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--dark-blue);
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #999;
    font-weight: 400;
}

.newsletter-form input:focus {
    border-bottom-color: var(--dark-blue);
}

.social-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: var(--dark-blue);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background-color: #1a1b4b;
}

.social-icons a.tiktok-link {
    background-color: transparent;
}

.tiktok-icon-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-left {
        flex: 55%;
    }

    .hero-right {
        flex: 45%;
        padding: 2rem;
    }

    .footer-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-left {
        min-height: 50vh;
        width: 100%;
    }

    .hero-right {
        width: 100%;
        padding: 4rem 2rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-col li {
        justify-content: center;
    }

    .contact-col .indent {
        margin-left: 0;
    }

    .retail-col .divider.small {
        width: 100%;
        max-width: 300px;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1240px) {
    .top-logo {
        position: absolute;
        left: 50vw;
        transform: translateX(-50%);
        top: 50px;
        z-index: 10;
    }
}