
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1c1c1c;
    color: #e8e8e8;
    font-family: Arial, Georgia, Garamond, serif;
    line-height: 1.6;
    padding: 40px 20px;
}

/* Layout */
.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Typography */
h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #f5f5f5;
    padding-bottom: 20px;
}

h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

h3 {
  margin-top: 12px;
    text-align: center;
}

p {
    margin-bottom: 20px;
    color: #c8c8c8;
}

img {
  border-radius: 12px;
}

.two_image_container {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.img_block {
  flex: 0 0 40%;        /* THIS is the important line */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img_block img {
  width: 100%;
  object-fit: cover;
}

.img_block p {
  margin-top: 6px;
  text-align: center;
  font-weight: 600;
}

.highlight {
  background: rgba(77, 163, 255, 0.205);
  padding: 0 2px;
  border-radius: 2px;
  color: #4da3ff;        /* pleasant blue */
  font-weight: 600;
}

.feature_heading {
    text-align: center;
    background: rgba(77, 163, 255, 0.205);
    padding: 0 2px;
    border-radius: 2px;
    color: #4da3ff;        /* pleasant blue */
    font-weight: 600;
    margin-bottom: 4px;
}





/* Sections */
.section {
    margin-bottom: 40px;
}


/* Fixed-size image container */
.carousel-img-container {
    position: relative;
    width: 600px;    /* fixed width */
    height: 400px;   /* fixed height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* optional placeholder color */
}

/* Make images scale to fit inside container */
.carousel-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* preserve aspect ratio */
}

/* Top-left index overlay */
.img-index {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

/* Buttons */
.carousel-controls {
    display: flex;
    width: 100%;
    max-width: 600px;
    gap: 10px;
}

.carousel-btn {
    flex: 1;
    height: 32px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: white;
    transition: 0.2s;
    background: rgba(77, 163, 255, 0.205);
}

.carousel-btn:hover {
    background-color: #555;
}

.carousel-btn:active {
    transform: scale(0.98);
}

.carousel-btn svg {
    width: 40px;
    height: 40px;
    color: #4da3ff; 
}


/* Text-like clickable link */
.text-link {
color: inherit; /* same color as text */
text-decoration: none; /* no underline */
cursor: pointer; /* still shows it's clickable */
font: inherit; /* same font */
}


.text-link:hover {
text-decoration: underline; /* optional subtle feedback */
}


.text-link:active {
opacity: 0.8;
}