/* ========================================================
PORTFOLIO.CSS – Complete Styles for Portfolio Page
======================================================== */

/* ===== RESET & GENERAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

/* ===== COLOR VARIABLES ===== */
:root {
  --bright-green: #2F6B2F;
  --dark-green: #182D09;
  --gold: #EAAA00;
  --olive-green: #4B4C2B;
  --footer-green: #0F1F07;
  --white: #ffffff;
  --light-gray: #f9f9f9;
  --card-shadow: rgba(0, 0, 0, 0.1);
}

/* ===== BODY ===== */
body {
  font-family: Arial, sans-serif;
  color: var(--dark-green);
  margin: 0;
  padding: 0;
  background: url("behind.png") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ===== CONTACT BAR (TOP) ===== */
.social-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  background-color: transparent;
  color: var(--white);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 18px;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 2;
}

.contact-info {
  display: flex;
  gap: 25px;
  font-size: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== HEADER ===== */
header {
  position: relative;
  background: linear-gradient(135deg, var(--olive-green), var(--bright-green) 50%, var(--olive-green));
  color: var(--gold);
  text-align: center;
  padding: 60px 20px 40px;
}

header h1 {
  margin: 0;
  font-size: 48px;
  font-weight: bold;
  color: var(--gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-subtitle {
  font-size: 18px;
  color: var(--white);
  margin-top: 10px;
  font-weight: 500;
}

/* ===== MAIN CONTENT AREA ===== */
main {
  padding: 40px 20px;
  min-height: calc(100vh - 300px);
}

/* ===== CONTENT BOX (General Container) ===== */
.content-box {
  max-width: 900px;
  margin: 0 auto 50px;
  background-color: var(--white);
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 20px var(--card-shadow);
  line-height: 1.8;
}

.content-box h2 {
  color: var(--dark-green);
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 15px;
}

.content-box p {
  color: var(--dark-green);
  margin-bottom: 15px;
  font-size: 16px;
}

/* ===== INTRO SECTION ===== */
.intro-section {
  text-align: justify;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  color: var(--dark-green);
  font-size: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header p {
  color: var(--dark-green);
  font-size: 16px;
  margin: 0;
}

/* ========================================================
VIDEOS SECTION
======================================================== */

.videos-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Videos Container Grid */
.videos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Video Card */
.video-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px var(--card-shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Video Placeholder */
.video-placeholder {
  background: linear-gradient(135deg, var(--dark-green), var(--olive-green));
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1;
}

.video-card:hover .video-placeholder::before {
  background: rgba(0, 0, 0, 0.4);
}

/* Video Thumbnail Image */
.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.video-placeholder p {
  color: var(--gold);
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.play-icon {
  width: 70px;
  height: 70px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.video-card:hover .play-icon {
  transform: scale(1.15);
  background-color: var(--white);
}

/* ===== Responsive video element styles and custom play button ===== */
.video-placeholder video.portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--gold);
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.video-placeholder.playing .video-play-btn {
  display: none;
}

/* Loading Spinner for Video Cards */
.video-loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2;
}

.video-placeholder.playing::before {
  background: rgba(0, 0, 0, 0);
}

/* ========================================================
VIDEO MODAL STYLES – Advanced Video Player
======================================================== */

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  cursor: pointer;
  z-index: 1;
}

.modal-content {
  position: relative;
  background-color: #000;
  border-radius: 16px;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  max-height: 85vh;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  animation: modalSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@keyframes modalSlideUp {
  from {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--dark-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 3;
  font-weight: bold;
}

.modal-close:hover {
  background-color: var(--gold);
  transform: rotate(90deg) scale(1.1);
}

/* Video Container with Portrait Video Support */
.modal-video-container {
  flex: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}

/* Video Element Styling */
.modal-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

/* Portrait Video Handling */
.modal-video-container.portrait-video {
  padding: 20px;
}

.modal-video-container.portrait-video .modal-video {
  max-height: 90%;
  width: auto;
  height: auto;
  max-width: 100%;
}

/* Video Controls */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  padding: 30px 15px 15px;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.video-modal.controls-hidden .video-controls {
  opacity: 0;
  pointer-events: none;
}

/* Progress Bar Container */
.progress-container {
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
}

.progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: height 0.2s ease;
}

.progress-bar:hover {
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
}

/* Progress Bar Slider Thumb Styling */
.progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 5px rgba(234, 170, 0, 0.5);
  transition: all 0.2s ease;
}

.progress-bar::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(234, 170, 0, 0.8);
}

.progress-bar::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 5px rgba(234, 170, 0, 0.5);
  transition: all 0.2s ease;
}

.progress-bar::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(234, 170, 0, 0.8);
}

/* Progress Hover Time Display */
.progress-hover-time {
  position: absolute;
  bottom: 15px;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  color: var(--gold);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
  display: none;
  z-index: 11;
}

.progress-container:hover .progress-hover-time {
  display: block;
}

/* Control Bar */
.control-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

/* Controls Groups */
.controls-group-left,
.controls-group-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Control Buttons */
.control-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 18px;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.control-btn:active {
  background: var(--gold);
  color: var(--dark-green);
}

.btn-icon {
  display: inline-block;
  line-height: 1;
}

/* Time Display */
.time-display {
  color: white;
  font-size: 13px;
  white-space: nowrap;
  padding: 0 10px;
  font-weight: 500;
  min-width: 70px;
}

.time-separator {
  margin: 0 2px;
  opacity: 0.7;
}

/* Volume Control */
.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-slider {
  width: 70px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.volume-slider:hover {
  background: rgba(255, 255, 255, 0.5);
  height: 5px;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 5px rgba(234, 170, 0, 0.5);
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 5px rgba(234, 170, 0, 0.5);
}

/* Loading Spinner Overlay */
.video-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  border-radius: 0;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Modal Title */
.modal-title {
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--gold);
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-top: 1px solid rgba(234, 170, 0, 0.3);
}

/* ========================================================
IMAGE MODAL / LIGHTBOX STYLES
Re-uses the same dark modal theme as the video player to
preserve the existing design system and animations.
======================================================== */
.image-modal .modal-content {
  aspect-ratio: auto;
  max-width: 1100px;
  width: 90%;
  max-height: 90vh;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  object-position: center center;
  transition: opacity 0.35s ease;
  display: block;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
}

.image-prev,
.image-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.image-prev { left: 12px; }
.image-next { right: 12px; }

.image-prev:hover,
.image-next:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.05);
}

.image-loading-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 8px;
}

@media screen and (max-width: 480px) {
  .image-prev, .image-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .modal-content {
    padding: 10px;
    height: 70vh;
  }
}

/* ===== Modal Responsive Design ===== */
@media screen and (max-width: 1024px) {
  .modal-content {
    max-width: 95%;
    width: 95%;
  }
  
  .video-controls {
    padding: 20px 12px 12px;
  }
  
  .control-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  .time-display {
    font-size: 12px;
    min-width: 60px;
    padding: 0 8px;
  }
  
  .volume-slider {
    width: 50px;
  }
}

/* Video Info */
.video-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.video-info h3 {
  color: var(--dark-green);
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 0;
}

.video-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
  flex-grow: 1;
}

.video-meta {
  color: var(--gold) !important;
  font-size: 12px !important;
  font-weight: bold;
  margin-top: auto;
}

/* ========================================================
PHOTOS SECTION
======================================================== */

.photos-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

/* Photos Grid */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Photo Card */
.photo-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px var(--card-shadow);
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.photo-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Photo Placeholder */
.photo-placeholder {
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.photo-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--dark-green), var(--olive-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-card:hover .photo-placeholder::after {
  opacity: 0.3;
}

.photo-placeholder p {
  color: #999;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

/* Photo Caption */
.photo-caption {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.photo-caption h4 {
  color: var(--dark-green);
  font-size: 18px;
  margin: 0 0 10px 0;
  transition: color 0.3s ease;
}

.photo-card:hover .photo-caption h4 {
  color: var(--gold);
}

.photo-caption p {
  color: #666;
  font-size: 14px;
  margin: 0;
  flex-grow: 1;
  line-height: 1.6;
}

/* ========================================================
CALL TO ACTION SECTION
======================================================== */

.cta-section {
  max-width: 800px;
  margin: 80px auto;
  background: linear-gradient(135deg, var(--dark-green), var(--olive-green));
  padding: 50px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section h2 {
  color: var(--gold);
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-section p {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  background-color: var(--gold);
  color: var(--dark-green);
  padding: 15px 40px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--gold);
}

/* ===== BUTTON CONTAINER ===== */
.button-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* ===== BACK TO HOME BUTTON ===== */
.back-btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--dark-green);
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(234, 170, 0, 0.3);
}

.back-btn:hover {
  background-color: var(--dark-green);
  color: var(--white);
  transform: translateX(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER (DARK GREEN) ===== */
footer {
  background-color: var(--footer-green);
  color: var(--white);
  text-align: center;
  padding: 25px 20px;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 60px;
}

/* ========================================================
RESPONSIVE DESIGN - MOBILE & TABLET
======================================================== */

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
  
  header {
    padding: 50px 15px 30px;
  }

  header h1 {
    font-size: 36px;
  }

  .header-subtitle {
    font-size: 16px;
  }

  main {
    padding: 30px 15px;
  }

  .content-box {
    padding: 25px 20px;
    max-width: 100%;
  }

  .content-box h2 {
    font-size: 26px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .videos-container,
  .photos-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .video-card,
  .photo-card {
    box-shadow: 0 5px 15px var(--card-shadow);
  }

  .cta-section {
    margin: 60px auto;
    padding: 40px 20px;
  }

  .cta-section h2 {
    font-size: 28px;
  }
  
  .modal-content {
    width: 95%;
    aspect-ratio: auto;
    height: 70vh;
  }

  .modal-close {
    width: 36px;
    height: 36px;
    font-size: 20px;
    top: 10px;
    right: 10px;
  }

  .modal-title {
    font-size: 14px;
    padding: 12px 15px;
  }
  
  .video-controls {
    padding: 15px 10px 10px;
  }
  
  .control-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .time-display {
    font-size: 11px;
    min-width: 55px;
    padding: 0 6px;
  }
  
  .volume-slider {
    width: 40px;
  }
}

/* Mobile Phones (480px and below) */
@media screen and (max-width: 480px) {
  
  .social-bar {
    position: static;
    justify-content: center;
    width: 100%;
    padding: 8px 10px;
    font-size: 11px;
  }

  .contact-info {
    gap: 10px;
    justify-content: center;
    text-align: center;
  }

  header {
    padding: 40px 10px 25px;
    margin-top: 25px;
  }

  header h1 {
    font-size: 28px;
  }

  .header-subtitle {
    font-size: 14px;
  }

  main {
    padding: 20px 10px;
  }

  .content-box {
    padding: 20px 15px;
    margin-bottom: 30px;
  }

  .content-box h2 {
    font-size: 22px;
    padding-bottom: 10px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }

  .videos-container,
  .photos-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .video-placeholder,
  .photo-placeholder {
    height: 180px;
  }

  .play-icon {
    width: 60px;
    height: 60px;
    font-size: 12px;
  }

  .video-info,
  .photo-caption {
    padding: 15px;
  }

  .video-info h3,
  .photo-caption h4 {
    font-size: 16px;
  }

  .video-info p,
  .photo-caption p {
    font-size: 13px;
  }

  .cta-section {
    margin: 40px auto;
    padding: 30px 15px;
  }

  .cta-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .cta-section p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }

  .back-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  footer {
    font-size: 12px;
    padding: 20px 15px;
  }
}

/* Extra Small Phones (below 360px) */
@media screen and (max-width: 359px) {
  
  header h1 {
    font-size: 24px;
  }

  .content-box h2 {
    font-size: 20px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .video-info h3,
  .photo-caption h4 {
    font-size: 15px;
  }

  .cta-section h2 {
    font-size: 20px;
  }
}

/* ========================================================
PRINT STYLES (Optional - for printing the page)
======================================================== */

@media print {
  .social-bar,
  .button-container {
    display: none;
  }

  body {
    background: none;
  }

  .video-card,
  .photo-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
