/* GLOBAL SETTINGS */
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* HEADER — LOGO + TEXT */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 40px 0;
}

.logo {
    width: 550px;
    height: auto;
    object-fit: contain;
    padding: 10px;
    border: 3px solid #f5c16c;
    border-radius: 10px;
}

/* HEADER TEXT */
#header-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#header-text h1 {
    margin: 5px;
    font-size: 35px;
    font-weight: bolder;
    text-align: center;
    line-height: 100px;
    text-decoration: underline;
}

/* SUB HEADER */
.sub-header {
    font-size: 18px;
    margin: 15px auto;
    width: 90%;
    line-height: 1.5;
}

/* MAIN BUTTON */
.hero-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.buy-now-btn {
    padding: 14px 32px;
    background-color: #f5c16c;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* BUTTON FIXED */
.browse-feature,
.five input[type="button"] {
    padding: 10px 20px;
    margin: 6px;
    background: #f5c16c;
    border: none;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}

/* FEATURE IMAGES */
.photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.photos img {
    width: 30%;
    border-radius: 10px;
}

/* INTRO + TEXT SECTIONS */
.intro-section {
    width: 90%;
    margin: auto;
    line-height: 1.6;
    font-size: 16px;
}

/* EBOOK GRID */
.ebook-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
    width: 90%;
}

.ebook-card {
    background: #000;
    padding: 20px;
    border: 2px solid #f5c16c;
    border-radius: 14px;
}

.ebook-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.ebook-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ebook-price {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.buy-btn {
    padding: 8px 18px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
}

.buy-btn:hover {
    background: #fff;
    color: #000;
}

/* CONTACT & GET IN TOUCH */
.border {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.border fieldset {
    background: #000;
    border: 8px solid #f5c16c;
    border-radius: 12px;
    padding: 25px;
    width: 40%;
    min-width: 300px;
    color: #fff;
    font-weight: bold;
}

.border fieldset input[type="text"],
.border fieldset input[type="email"] {
    width: 90%;
    padding: 8px;
    margin: 6px 0;
    border-radius: 4px;
    border: 2px solid #f5c16c;
    background: transparent;
    color: #fff;
}

.border fieldset input[type="submit"] {
    background: #f5c16c;
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.border fieldset a {
    color: #fff;
}

/* GET IN TOUCH TEXT FIX */
.get-in-touch-box {
    padding: 30px 20px;
    text-align: center;
}

.get-in-touch-box h1 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: bold;
}

.get-in-touch-box p {
    font-size: 25px;
    margin: 10px 0;
    line-height: 1.4;
}

.get-in-touch-box a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #f5c16c;
    color: #000;
    padding: 10px 20px 30px 20px;
    text-align: center;
}

footer h1 {
    margin: 10px 0;
    font-weight: bold;
}

footer a {
    color: #000;
    text-decoration: underline;
}

/* FIX RAZORPAY BUTTON STYLE */
.razorpay-payment-button {
    width: 100% !important;
    height: 38px !important;
    background: #f5c16c !important;
    color: #000 !important;
    font-weight: bold !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    border: none !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    margin-top: 10px !important;
}

/* CENTER BUTTON INSIDE EBOOK CARD */
.ebook-card form {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* FIX EBOOK CARD SPACING */
.ebook-card {
    padding-bottom: 15px;
}

/* PRICE TEXT FIX */
.ebook-price {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}
