:root {
    --main-color: #e5af4b;
    --secondary-color: #4B81E5;
    --text-color: #333333;
    --section-image-bg: #f3f4f6;
    --lion: #BE934F;
    --satin-sheen-gold: #CC9C43;
    --hunyadi-yellow: #E4AF4A;
    --almond: #EDDBC5;
    --white: #FEFEFE;
    --black: #000000;
}

.black-han-sans-regular {
  font-family: "Black Han Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.orbit-regular {
  font-family: "Orbit", sans-serif;
  font-weight: 400;
  font-style: normal;
}


h1, h2, h3, h4, h5, h6, p, a, span, div {
  font-family: "Black Han Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}


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

body {
  font-family: "Black Han Sans", sans-serif;
    font-weight: 100;
    background: var(--white);
    color: var(--text-color);
    padding-top: 80px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-section {
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    border-radius: 4px;
}

.logo > img {
    height: 60px;
    width: auto;
}

.logo-sub {
    font-size: 12px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-bar-text {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 500;
}

.online-store-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.online-store-link:hover {
    color: #666;
}

.main-content {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 10px;
}

.content-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 8px;
    max-width: 1200px;
    width: 100%;
}

.title-section {
    text-align: center;
    margin-bottom: 30px;
}

.main-title {
    font-size: 64px;
    font-weight: bold;
    background: var(--main-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 36px;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 30px;
}

.description {
    font-family: "Orbit", sans-serif;
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.bottom-banner {
    width: 100%;
    background: var(--secondary-color);
    padding: 25px 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    transition: background 0.2s;
}

.bottom-banner:hover {
    opacity: 0.9;
}

.white-section {
    background: var(--white);
    padding: 0px 40px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.section-image {
    width: 100%;
    height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 14px;
}

.section-text {
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-title {
    font-size: 36px;
    color: #444;
    font-weight: bold;
}

.section-description {
    font-family: "Orbit", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.section-link {
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #60a5fa;
    text-decoration: none;
}

.section-link:hover {
    text-decoration: underline;
}

.section-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-button {
    font-family: "Orbit", sans-serif;
    font-style: normal;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    transition: background 0.2s;
    background: var(--secondary-color);
}

.section-button:hover {
    opacity: 0.9;
}

.banner-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-banner {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-width: 1200px;
    object-fit: cover;
    display: block;
    background: #e5e7eb;
}

.new-releases-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.new-releases-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background: #e5e7eb;
}

.partnership-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin-left: auto;
}

.contacts-header {
    text-align: center;
    margin-bottom: 50px;
}

.newsletter {
    background: var(--hunyadi-yellow);    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 1200px;
    padding: 60px 0;
    margin-bottom: 40px;
    background-size: cover;
    background-position: center;
}

.newsletter h2 {
    color: var(--black);
    font-size: 36px;
    font-weight: bold;
}

.newsletter form {
    flex-direction: row;
    display: flex;
    gap: 15px;
    align-items: center;
}

.newsletter-signup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 28px;
    background: var(--white);
    color: var(--main-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    margin: 0;
    box-sizing: border-box;
    vertical-align: middle;
    cursor: pointer;
}

.newsletter-signup-button:hover {
    opacity: 0.9;
}

.newsletter-email-input {
    display: inline-flex;
    align-items: center;
    height: 56px;
    padding: 0 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    width: 300px;
    max-width: 100%;
    box-sizing: border-box;
    vertical-align: middle;
}

.contacts-title {
    font-size: 48px;
    color: #444;
    font-weight: bold;
    margin-bottom: 40px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-section-title {
    font-size: 24px;
    color: #444;
    font-weight: bold;
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 16px;
    color: #444;
}

.contact-link {
    color: var(--hunyadi-yellow);
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #4a5568;
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

.footer-text {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .main-title {
        font-size: 40px;
    }

    .subtitle {
        font-size: 24px;
    }

    .button-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .description {
        font-size: 16px;
        padding: 0 20px;
    }

    .section-with-image {
        grid-template-columns: 1fr;
    }

    .new-releases-section,
    .events-section {
        grid-template-columns: 1fr;
    }

    .newsletters-grid {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .gpsr-header-section {
        flex-direction: column;
    }

    .gpsr-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .button-grid {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 20px;
    }

    .newsletter {
        width: 100%;
        font-size: 28px;
    }

    .newsletter form {
        flex-direction: column;
    }
}