/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #ffffff;
    text-align: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* BACKGROUND */
.background-container {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: url("Background.png"); /* your file in same folder */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,   /* lighter than before */
        rgba(0, 0, 0, 0.25) 40%,  /* lighter than before */
        rgba(0, 0, 0, 0.45) 100%  /* lighter than before */
    );
}

/* MAIN CONTENT */
.main-content {
    padding: 48px 20px 70px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* TITLE */
.title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 2.5px;
    margin-bottom: 26px;
    font-size: clamp(2.2rem, 7vw, 3.4rem);
}

.title-line {
    display: block;
    background: linear-gradient(
        180deg,
        #fff6d5 0%,
        #f9d976 45%,
        #e6b84a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.95);
}


/* SUBTITLE */
.subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1rem, 4vw, 1.4rem);
    font-weight: 500;
    margin-bottom: 32px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
    line-height: 1.5;
}

.price {
    color: #f9d976;
    font-weight: 700;
    font-size: 1.3em;
    letter-spacing: 1px;
}

/* ICON GRID */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 520px;
    width: 100%;
    margin: 0 auto 32px;
    padding: 0 4px;
}

.icon-panel {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(249, 217, 118, 0.7);
    border-radius: 14px;
    padding: 18px 14px 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.icon-panel:hover {
    transform: translateY(-3px);
    border-color: #f9d976;
    box-shadow: 0 10px 26px rgba(249, 217, 118, 0.35);
}

.newsletter-panel {
    grid-column: 1 / -1;
    max-width: 340px;
    justify-self: center;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-panel i {
    font-size: 2.4rem;
    color: #f9d976;
}

.icon-panel h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    line-height: 1.3;
}

/* FORM */
.subscribe-form {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
}

.email-input {
    background: rgba(255, 255, 255, 0.94);
    border: 2px solid rgba(249, 217, 118, 0.7);
    border-radius: 26px;
    padding: 12px 18px;
    font-size: 0.95rem;
    color: #222;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: left;
}

.email-input::placeholder {
    color: #666;
}

.email-input:focus {
    background: #fff;
    border-color: #f9d976;
    box-shadow: 0 0 15px rgba(249, 217, 118, 0.5);
}

.subscribe-btn {
    background: linear-gradient(180deg, #f9d976 0%, #f39c12 55%, #b9770e 100%);
    border: none;
    border-radius: 26px;
    padding: 13px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1305;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 22px rgba(249, 217, 118, 0.55);
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
}

.subscribe-btn i {
    font-size: 0.9rem;
}

/* BACK BUTTON */
.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #1a1305;
    padding: 12px 28px;
    border-radius: 26px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    box-shadow: 0 8px 22px rgba(249, 217, 118, 0.55);
    transition: all 0.25s ease;
    margin-top: 16px; /* keep button slightly lower */
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(249, 217, 118, 0.65);
}

/* RESPONSIVE */
@media (min-width: 600px) {
    .main-content {
        padding-top: 60px;
    }
    .icon-grid {
        max-width: 560px;
        gap: 18px;
    }
}

@media (min-width: 768px) {
    .main-content {
        padding-top: 70px;
    }
    .icon-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 880px;
        gap: 20px;
    }
    .newsletter-panel {
        grid-column: 2 / 4;
        max-width: none;
    }
}
