/* === GLOBAL RESET & TYPOGRAPHY === */
body, h1, h2, h3, h4, h5, h6, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Responsive font scaling */
html {
    font-size: 18px;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }
p  { font-size: 1rem; }

@media (max-width: 992px) {
    html { font-size: 16px; }
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.1rem; }
    h3 { font-size: 1rem; }
    p  { font-size: 0.95rem; }
}

@media (max-width: 576px) {
    html { font-size: 14px; }
    h1, h2, h3 { font-size: 1rem; }
    p { font-size: 0.9rem; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #222;
}

a {
    color: #e91e63;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* === HEADER / NAVBAR === */
.custom-navbar {
    border-top: 2px solid #034E99;
    border-bottom: 2px solid #034E99;
    background-color: #FFFFFF !important;
}

.custom-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff !important;
    z-index: 1050;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-container {
    justify-content: flex-start;
    background-color: #ffffff !important;
}

.logo-img {
    max-height: 70px;
}

.custom-navbar .nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 1rem;
}

.custom-navbar .nav-link:hover {
    color: #007bff;
}

/* === HERO / CONTENT === */
.custom-bg {
    background-color: #E1F2F7;
}



/* === SPACING === */
body {
    padding-top: 100px; /* Adjust based on header height */
}

/* === NEWSLETTER SECTION === */
.newsletter {
    text-align: center;
    padding: 30px;
    background-color: #0077b6;
    color: white;
}
.newsletter form {
    margin-top: 10px;
}
.newsletter input {
    padding: 10px;
    width: 200px;
}
.newsletter button {
    padding: 10px 20px;
    background-color: #0096c7;
    color: white;
    border: none;
    cursor: pointer;
}

/* === FOOTER === */
footer {
    text-align: center;
    padding: 15px;
    background-color: #023e8a;
    color: white;
}
footer ul {
    display: flex;
    justify-content: center;
    list-style: none;
}
footer ul li {
    margin: 0 10px;
}
footer ul li a {
    text-decoration: none;
    color: white;
}


.kdrama-hero {
    background: url('images/kdrama-banner.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    position: relative;
}

.kdrama-hero h1 {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 8px;
}


.card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.card-text {
    font-family: 'Roboto', sans-serif;
    color: #333;
}


body {
  padding-top: 150px; /* accommodates fixed header */
}

@media (min-width: 992px) {
  /* Set fixed height on carousel container */
  #HomeCarousel {
    height: 450px;
  }

  /* Make carousel inner and items fill that height */
  #HomeCarousel .carousel-inner,
  #HomeCarousel .carousel-item {
    height: 100% !important;
  }

  /* Make images fill and cover */
  #HomeCarousel .carousel-item img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
}


/* === 3-IMAGE GRID === */
.three-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.grid-image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.grid-image-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .three-image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }
}


/* === AMAZON CTA SECTION === */
.amazon-cta {
    background: linear-gradient(135deg, #ff9500 0%, #ff7700 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 149, 0, 0.2);
}

.amazon-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.amazon-product-info {
    margin: 20px 0;
}

.amazon-product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.amazon-button {
    background: white;
    color: #ff9500;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.amazon-button:hover {
    background: #f8f9fa;
    color: #ff7700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .amazon-product-image {
        width: 100px;
        height: 100px;
    }
    
    .amazon-cta {
        padding: 25px 20px;
    }
}