@import url("https://fonts.geekzu.org/css2?family=Poppins:wght@300;400;500&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

@font-face {
    font-family: __national;
    src: url("../../fonts/national.woff2") format("woff2");
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

.terms-conditions-text * {
    font-family: __national, ui-sans-serif, system-ui, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    overflow: auto;
    height: 100vh;
}

.heading {
    width: 100%;
    background: #fff;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #e6c524e9;
}

.sub-heading {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.sub-heading img {
    width: 2.5em;
    height: 2.5em;
}

.sub-heading p {
    margin-bottom: 0;
    max-width: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}
/*

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
*/

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
}

.modal-header {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.terms-conditions-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    padding-left: 20px;
}

.terms-conditions-text ol {
    padding-left: 20px;
}

.terms-conditions-text li {
    margin-bottom: 10px;
}

strong {
    color: #000;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

#termsModal {
    color: black;
    z-index: 2000;
}

.terms-conditions {
    text-align: center;
}

.terms-conditions img {
    vertical-align: middle;
}

.terms-conditions a {
    font-size: 0.75rem;
    color: gray;
    text-decoration: none;
    margin-left: 8px;
}

.terms-conditions a:hover {
    text-decoration: underline;
}

.container2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.coupon-card {
    color: black;
    text-align: center;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    width: 100%;
    max-width: 600px;
    overflow: visible;
    z-index: 1000;
    background: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.coupon-card h1 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.coupon-card h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

.coupon-card p {
    font-size: 14px;
}

.coupon-row {
    display: flex;
    align-items: center;
    margin: 2.5px auto;
    width: fit-content;
    text-align: center;
}

#CpnCode {
    border: 1px dashed #fff;
    padding: 8px 15px;
    border-right: 0;
}

.button-container {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    overflow: hidden;
}

#cpnBtn {
    border: 3px solid #6a4e26;
    padding: 5px 12px;
    color: #6a4e26;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
    background-color: #ffffff;
    text-decoration: none;
    width: 100%;
}

#cpnBtn img {
    vertical-align: middle;
    width: 1.25em;
    height: 1.25em;
    margin: 0 4px;
}

.download-section {
    text-align: center;
    padding: 0.25rem;
    background-color: #fff;
    border-top: 2px solid #e6c524e9;
    margin-top: auto;
}

.download-section p {
    font-size: 12px;
    color: #555;
    margin-bottom: 0.1rem;
    line-height: 1;
}

.download-buttons {
    margin-top: 0.15rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.download-btn {
    display: inline-block;
}

.download-image {
    width: 120px;
    height: auto;
    transition: transform 0.3s;
}

.download-image:hover,
.coupon-row:hover {
    transform: scale(1.05);
}

.coupon-card {
    overflow: hidden;
}

.coupon-card::before,
.coupon-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1;
    clip-path: circle(50% at center);
}

.coupon-card::before {
    left: -25px;
}

.coupon-card::after {
    right: -25px;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

.container2 {
    position: relative;
}

.container2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #6a4e26;
    z-index: -1000;
}

.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 5px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.contact-icon {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.contact-info {
    max-width: 100%;
    text-align: center;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.divider {
    display: block;
    background-color: #000;
    width: 2px;
    height: auto;
    align-self: stretch;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}

.heading-title {
    font-size: 1.65rem;
    font-weight: 900;
    font-family: "Lobster", sans-serif;
}

.heading-subtitle {
    font-size: 0.65rem;
    line-height: 0.75rem;
    color: gray;
}

.contact-info-sub {
    color: gray;
    font-size: 0.7rem;
    display: block;
    margin-bottom: 0.15rem;
}

.fixed-bottom {
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Event image styles */
@media (min-width: 768px) {
    .module-image {
        max-width: 400px;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .sub-heading img {
        width: 2rem;
        height: 2rem;
    }

    .modal-content {
        padding: 2px;
    }

    .modal-header {
        font-size: 1.25rem;
    }

    .terms-conditions-text {
        font-size: 0.9rem;
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-info-sub {
        margin-bottom: 0;
    }

    .heading {
        padding-top: 5px;
    }

    .container2 {
        padding: 0px 20px;
    }

    .download-section {
        padding: 5px;
    }

    .heading-title {
        font-weight: 900;
        font-size: 1.25rem;
    }

    .heading-subtitle {
        font-size: 0.5rem;
        line-height: 0.65rem;
        color: gray;
    }

    .coupon-card {
        max-width: 100%;
        padding: 15px 15px;
    }

    .coupon-card h1 {
        font-size: 18px;
    }

    .coupon-card h3 {
        font-size: 16px;
    }

    .coupon-card p {
        font-size: 12px;
    }

    .download-section p {
        font-size: 10px;
    }

    .responsive-img {
        width: 75%;
    }

    .contact-container {
        flex-direction: column;
    }

    .divider {
        width: 100%;
        height: 2px;
        align-self: center;
    }

    .sub-heading {
        display: block;
        width: 100%;
    }

    .contact-info {
        max-width: 100%;
        text-align: center;
        font-size: 0.7rem;
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .sub-heading img {
        margin-left: 0;
    }

    .sub-heading p {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .responsive-img {
        width: 50%;
    }

    .coupon-card h1 {
        font-size: 16px;
    }

    .coupon-card h3 {
        font-size: 14px;
    }

    .coupon-card p {
        font-size: 11px;
    }

    .download-section p {
        font-size: 11px;
    }

    .download-buttons {
        align-items: center;
        gap: 5px;
    }

    .download-image {
        width: 100px;
    }

    .sub-heading {
        display: block;
        width: 100%;
    }

    .sub-heading img {
        margin-left: 0;
    }
}
