/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ariel', sans-serif;
  background-color: #ffffff;
  color: #111;
  line-height: 1.5;
}

.image-container {
    position: relative;
    display: inline-block;
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.image-container img {
    position: relative;
    top: -50px;       /* Moves image UP by 50px */
    width: 100%;
    min-width: 1000px;
    height: auto;
    display: block;
}

  
  .text-overlay { /* Large EURO TV Logo */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    width: fit-content;          /* So borders fit the text */
    padding: 25px 45px;          /* Your requested padding */
    border: 10px double #ffffff;     /* Double border, 3px */
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 35px 35px 70px 35px;
  gap: 35px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.announcement {
  width: 100%;             /* Fill parent container */
  background: #131313;        /* Black box */
  padding: 20px;           /* Space inside the box */
  margin: 0px;     /* Outer margins */
  text-align: center;      /* Centered text */
  box-sizing: border-box;  /* Prevents padding from increasing total width */
}

.subtitle {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
}

/* Main content */

.main-content-container {
    display: flex;
    flex-direction: row;
    margin: 0;             /* Remove auto-centering */
    padding: 35px;
    gap: 35px;             /* Add units for gap */
    width: 100%;           /* Fill parent width */
    max-width: 100%;       /* Ensure it can fill entire parent */
    border: 2px solid #000;
}

.info-container {
    display: inline-flex;
    flex-direction: column;   /* Stack items vertically */
    align-items: flex-start;  /* Align to the left */
    gap: 35px;                /* Space between image and text */
    padding: 0px;
    width: 50%;
}

.image-container-record {
    position: relative;
    display: block;
    width: 100%;        /* Parent sets the size */
    height: auto;       /* Or a fixed height if you prefer */
    overflow: hidden;
    width: 50%;
}

.image-container-record img {
    width: 100%;        /* Image fills parent width */
    height: auto;       /* Keep natural aspect ratio */
    object-fit: contain; /* Prevents cropping */
    display: block;
}

.description p {
  font-size: 18px;
  text-align: left;
  color: #333;
  max-width: flex;
  margin: 0 auto 0px auto;
}

/* Track list */
.content-block {
  text-align: left;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 500;
}

.content-block .title {
  margin-bottom: 10px;
}


.vinyl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;         /* expand to fill available width */
    max-width: 450px;    /* but NEVER exceed 450px */
    padding: 16px 20px;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000;
    gap: 35px;
    font-size: 18px;
    font-weight: 500;
}

/* Buttons / links */
.links {
    display: flex;              
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;                /* <-- allow stretching */
    padding: 0;
}


.btn-with-image {
    display: inline-flex;
    align-items: center;
    gap: 6px;               /* Spacing between image and text */
    padding: 12px 20px;
    background-color: #ffffff;  /* Button color */
    color: #000000;             /* Text color */
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid #000;  /* Optional */
    font-size: 20px;
    font-weight: 400;
    line-height: 0.8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.btn-with-image img {
    height: 24px;            /* Adjust image size */
    width: auto;
}

.btn-with_image:hover {
  background-color: #333;
}

/* Footer */
.footer {
  display: flex;               /* Makes items align left to right */
  flex-direction: row;
  justify-content: space-between;     /* Centers items horizontally */
  align-items: center;         /* Vertically centers them */
  gap: 20px; 
  padding: 20px 20px;
}

.footer-text {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
}

.text-overlay-small {          /* Small Euro TV Logo */
    color: #000000;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    padding: 5px 10px;
    border: 3px double #000000;
    width: fit-content;
    background: transparent;
    position: static;
    transform: none;
}

.footer-link {
  display: inline-block;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  background-color: #ffffff;
  border-radius: 30px;
  border: 1.5px solid #000000;
  transition: background-color 0.3s ease;
  margin: 0 10px;
}

.footer-link:hover {
  color: #7700ef;
}

.footer-group {
    display: flex;
    align-items: center;
    gap: 20px; /* no space between them */
}

.footer-group > * {
    margin: 0; /* remove default <p> margins */
}



/* ----------------------------- */
/* 📱 TABLET BREAKPOINT (max 900px) */
/* ----------------------------- */

@media (max-width: 900px) {

    /* Stack main content vertically instead of side-by-side */
    
.container {
  max-width: flex;
  margin: 0 auto;
  padding: 20px 20px 0px 20px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

    /* Shrink hero image height */
    .image-container {
        height: 200px;
    }

    .image-container img {
    min-width: 600px;
}

.announcement {
  width: 100%;             /* Fill parent container */
  background: #000;        /* Black box */
  padding: 20px;           /* Space inside the box */
  margin: 0px;     /* Outer margins */
  text-align: center;      /* Centered text */
  box-sizing: border-box;  /* Prevents padding from increasing total width */
}

.subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
}

    .main-content-container {
    display: flex;
    flex-direction: column;
    margin: 0;             /* Remove auto-centering */
    padding: 20px;
    gap: 35px;             /* Add units for gap */
    width: 100%;           /* Fill parent width */
    max-width: 100%;       /* Ensure it can fill entire parent */
    border: 2px solid #000;
}

.info-container {
    display: inline-flex;
    flex-direction: column;   /* Stack items vertically */
    align-items: flex-start;  /* Align to the left */             
    padding: 0px;
    width: 100%
}

.description p {
  font-size: 16px;
}

.content-block {
  font-size: 16px;
}

.image-container-record {
    position: relative;
    display: block;
    width: 100%;        /* Parent sets the size */
    height: auto;       /* Or a fixed height if you prefer */
    overflow: hidden;
}

    /* Make vinyl button full width */
 .vinyl {
    width: 100%;   
    font-size: 18px;
    padding: 14px;
        
}

.text-overlay { /* Large EURO TV Logo */
  font-size: 24px;
  padding: 15px 25px;
  border-width: 6px;
}
/* Buttons / links */
.links {
    display: flex;
    flex-direction: column;   /* Stack items vertically */
    align-items: flex-start;  /* Align to the left */
    gap: 10px;                /* Space between image and text */
    padding: 0px;
}

.btn-with-image {
    display: inline-flex;
    align-items: center;
    gap: 6px;               /* Spacing between image and text */
    padding: 10px 20px;
    background-color: #ffffff;  /* Button color */
    color: #000000;             /* Text color */
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid #000;  /* Optional */
    font-size: 18px;
    font-weight: 400;
    line-height: 0.8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.btn-with-image img {
    height: 20px;            /* Adjust image size */
    width: auto;
}
    /* Footer */
.footer {
  display: flex;               /* Makes items align left to right */
  flex-direction: row;
  justify-content: space-between;     /* Centers items horizontally */
  align-items: center;         /* Vertically centers them */
  gap: 20px; 
  padding: 20px 20px;
}

.footer-text {
  font-size: 12px;
  font-weight: 300;
  color: #000000;
}

.text-overlay-small {          /* Small Euro TV Logo */
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    padding: 4px 8px;
    border: 2px double #000000;
    width: fit-content;
    background: transparent;
    position: static;
    transform: none;
}

.footer-link {
  display: inline-block;
  text-decoration: none;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 300;
  color: #000000;
  background-color: #ffffff;
  border-radius: 30px;
  border: 1.5px solid #000000;
  transition: background-color 0.3s ease;
  margin: 0 10px;
}

.footer-link:hover {
  color: #68ef00;
}

.footer-group {
    display: flex;
    align-items: center;
    gap: 16px; /* no space between them */
}

.footer-group > * {
    margin: 0; /* remove default <p> margins */
}
}

/* ----------------------------- */
/* 📱 MOBILE BREAKPOINT (max 600px) */
/* ----------------------------- */

@media (max-width: 600px) {

    /* Stack main content vertically instead of side-by-side */
    
.container {
  max-width: flex;
  margin: 0 auto;
  padding: 16px 16px 0px 16px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

    /* Shrink hero image height */
.image-container {
    height: 170px;
}

.image-container img {
    min-width: 600px;
}

.announcement {
  width: 100%;             /* Fill parent container */
  background: #000;        /* Black box */
  padding: 16px;           /* Space inside the box */
  margin: 0px;     /* Outer margins */
  text-align: center;      /* Centered text */
  box-sizing: border-box;  /* Prevents padding from increasing total width */
}

.subtitle {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
}

 .main-content-container {
    display: flex;
    flex-direction: column;
    margin: 0;             /* Remove auto-centering */
    padding: 16px;
    gap: 24px;             /* Add units for gap */
    width: 100%;           /* Fill parent width */
    max-width: 100%;       /* Ensure it can fill entire parent */
    border: 1px solid #000;
}

.info-container {
    display: inline-flex;
    flex-direction: column;   /* Stack items vertically */
    align-items: flex-start;  /* Align to the left */
    gap: 24px;                /* Space between image and text */
    padding: 0px;
    width: 100%
}

.description p {
  font-size: 14px;
}

.content-block {
  font-size: 14px;
  font-weight: 500;
}

.image-container-record {
    position: relative;
    display: block;
    width: 100%;        /* Parent sets the size */
    height: auto;       /* Or a fixed height if you prefer */
    overflow: hidden;
}

.vinyl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;               /* fill parent */
    max-width: 100% !important;/* override desktop limit */
    border: 1.5px solid #000;
    padding: 14px;
    font-size: 16px;
    box-sizing: border-box;
}



    /* Scale logo text */
.text-overlay {
        font-size: 20px;
        padding: 10px 20px;
        border-width: 5px;
}
/* Buttons / links */
.links {
    display: flex;          
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;            /* full width on mobile */
    padding: 0;
}

.btn-with-image {
    display: inline-flex;
    align-items: center;
    gap: 6px;               /* Spacing between image and text */
    padding: 8px 18px;
    background-color: #ffffff;  /* Button color */
    color: #000000;             /* Text color */
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid #000;  /* Optional */
    font-size: 16px;
    font-weight: 400;
    line-height: 0.8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.btn-with-image img {
    height: 18px;            /* Adjust image size */
    width: auto;
}
    /* Footer */
.footer {
  display: flex;               /* Makes items align left to right */
  flex-direction: row;
  justify-content: space-between;     /* Centers items horizontally */
  align-items: center;         /* Vertically centers them */
  gap: 16px; 
  padding: 30px 10px;
}

.footer-text {
  font-size: 11px;
  font-weight: 300;
  color: #000000;
}

.text-overlay-small {          /* Small Euro TV Logo */
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    padding: 4px 8px;
    border: 2px double #000000;
    width: fit-content;
    background: transparent;
    position: static;
    transform: none;
}

.footer-link {
  display: inline-block;
  text-decoration: none;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 300;
  color: #000000;
  background-color: #ffffff;
  border-radius: 30px;
  border: 1.5px solid #000000;
  transition: background-color 0.3s ease;
  margin: 0 10px;
}

.footer-link:hover {
  color: #68ef00;
}

.footer-group {
    display: flex;
    align-items: center;
    gap: 16px; /* no space between them */
}

.footer-group > * {
    margin: 0; /* remove default <p> margins */
}
}