/* --------------------------- Global font reset --------------------------- */
body {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
  padding-top: 120px; /* space for sticky header */
}

/* H1 text for SEO */
.main-h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 0; /* spacing handled by catchline wrapper */
}




/* ------  END HEADER AND LOGO CSS  -------------------------- */
/* ---------- Sticky header --------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  text-align: center;              /* keeps logo centered */
  padding: 25px 0;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: padding 0.3s ease;
}

/* Shrink effect */
.site-header.shrink {
  padding: 10px 0;
}

/* Logo stays centered */
.site-header .logo {
  display: block;
  margin: 0 auto;
  height: auto;
  max-height: 30px;                /* normal size */
  transition: max-height 0.3s ease;
}

.site-header.shrink .logo {
  max-height: 25px;                /* smaller when header shrinks */
}

/* UK Flag positioned absolutely on the right */
.site-header .uk-flag {
  position: absolute;
  right: 15px;                     /* spacing from right edge on mobile */
  top: 50%;
  transform: translateY(-50%);     /* vertically center */
  height: auto;
  max-height: 18px;                /* normal size */
  transition: max-height 0.3s ease;
}

/* Make flag scale proportionally with logo when header shrinks */
.site-header.shrink .uk-flag {
  max-height: 15px;                /* scales down with logo */
}

/* Desktop: increase right margin */
@media (min-width: 901px) {
  .site-header .uk-flag {
    right: 40px;
  }
}

/* Optional: reduce right margin for smaller devices */
@media (max-width: 600px) {
  .site-header .uk-flag {
    right: 10px;
  }
}



/* ------  END HEADER CSS --------------------------- */



/* --------------------------- Catchline --------------------------- */
.catchline {
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 20px 0 20px 0; /* spacing below catchline */
}

.catchline .fully-featured {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  display: inline;       /* inline for single row on desktop */
  margin-right: 5px;
}

.catchline .main-h1 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  display: inline;
}

/* Mobile: stacked */
@media (max-width: 900px) {
  .catchline .fully-featured,
  .catchline .main-h1 {
    display: block;
    margin: 0 auto;
  }
}


/* Mobile adjustments */
@media (max-width: 900px) {
  .catchline {
    margin: 30px 0 15px 0;  /* mobile: top 30px, bottom 15px */
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .catchline {
    margin: 15px 0 15px 0;  /* mobile: top 30px, bottom 15px */
  }
}




/* --------------------------- Intro text section --------------------------- */
.intro-text {
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 auto 20px auto;
  padding: 20px;
  font-weight: 300;
  background-color: #fff;
}

/* Main lines (fade-in) */
.intro-text span.line1,
.intro-text span.line2,
.intro-text span.line3 {
  display: inline;
  font-size: 25px;
  font-weight: 400;
  color: #CC0000;
  line-height: 1.3;
  white-space: nowrap;
  margin: 0;
  opacity: 0;
  animation: fadeInMainLines 5s ease forwards;
  animation-delay: 0s;
}

/* Paragraph under main lines (static) */
.intro-text p {
  font-size: 22px;
  font-weight: 500;
  color: #555;
  margin-top: 40px;      /* equal spacing above */
  margin-bottom: 15px;   /* equal spacing below */
  white-space: nowrap;
}

.intro-text p span {
  display: inline;
}

/* Keyframes for fading in main lines */
@keyframes fadeInMainLines {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .intro-text span.line1,
  .intro-text span.line2,
  .intro-text span.line3,
  .intro-text p {
    display: block;
    font-size: 23px;
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .intro-text span.line1,
  .intro-text span.line2,
  .intro-text span.line3,
  .intro-text p {
    font-size: 22px;
  }
}

/* --------------------------- Category Blocks Placeholder --------------------------- */

/*    CATEGORY BLOCKS SECTION --------------- */

.category-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 20px 0px 30px 0px;
}

.category-block {
  text-align: center;
  flex: 1 1 200px;
  max-width: 220px;
  text-decoration: none;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.category-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-block span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif; 
  font-weight: 500;
}

.category-block .category-color-bar {
height: 5px;
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;
}

/* Category Colors */
.category-block.singles .category-color-bar { background-color: #CC0000; }
.category-block.mature .category-color-bar { background-color: #FAF1AC; }
.category-block.gay .category-color-bar { background-color: #A8EAE9; }
.category-block.lesbian .category-color-bar { background-color: #FFD9B4; }

/* Hover Effects */
.category-block:hover img {
  transform: scale(1.05);
}

/* Category-specific hover shadows */
.category-block.singles:hover img {
  box-shadow: 0 0 25px rgb(241 70 70 / 70%) /* Red glow */
}

.category-block.mature:hover img {
  box-shadow: 0 0 25px rgb(255 234 75 / 90%) /* Soft yellow glow */
}

.category-block.gay:hover img {
  box-shadow: 0 0 25px rgb(37 255 251 / 80%) /* Aqua glow */
}

.category-block.lesbian:hover img {
  box-shadow: 0 0 25px rgb(255 141 29 / 90%) /* Peach glow */
}

.category-block:hover span {
  color: #0066cc;
}

@media (max-width: 768px) {
  .category-blocks {
    flex-direction: column;
    align-items: center;
  }
  .category-block {
    max-width: 80%;
    margin-bottom: 20px;
  }
}

/* Increase category text on smaller screens */
@media (max-width: 600px) {
  .category-block span {
    font-size: 20px;  /* or whatever size you prefer */
  }
}

.category-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #333;
  text-align: center;
  display: block;
  margin-top: 10px;
  margin-bottom: 0;

  font-size: 18px; /* default desktop size */
}

/* Tablet: slightly bigger */
@media (max-width: 900px) {
  .category-title {
    font-size: 20px;
  }
}

/* Mobile: keep current size or slightly bigger for readability */
@media (max-width: 600px) {
  .category-title {
    font-size: 22px;
  }
}

.category-block h3 {
    font-size: 14px;
    font-weight: normal;
    margin: 5px 0 0 0; /* small spacing above and below */
    color: #555; /* optional, a slightly muted tone */
    text-align: center; /* keep it centered under the block */
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .category-block h3.subheading {
        font-size: 18px;     /* larger on mobile for readability */
    }
}




/*    END CATEGORY BLOCKS SECTION --------------- */


/*    FEATURES SECTION --------------- */
/* Inner container: always 3 columns, except mobile */
.features {
  display: grid !important;              /* overrides inline display:flex */
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 10px;                             /* spacing between cards */
}

/* Cards */
.feature-card {
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
  background-color: #ededed;
  border-radius: 5px;
  /* No margins needed; grid gap handles spacing */
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}


/* Inner container: always 3 columns, except mobile */
.features {
  display: grid !important;              /* overrides any inline flex */
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 10px;                             /* spacing between cards */
}

/* Cards */
.feature-card {
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
  background-color: #ededed;
  border-radius: 5px;
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}
/* Container (outer wrapper) */
.features-wrapper {
  display: flex;
  justify-content: center;
  background-color: #ededed;
  padding: 100px 0;
  margin:75px 0px 20px 0px;
}

/* Inner container: always 3 columns, except mobile */
.features {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 65%;
  max-width: 100%;
}

/* Cards */
.feature-card {
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
  background-color: #ededed;
  border-radius: 5px;
  font-family: Verdana, sans-serif;
  font-size: 15px;
  line-height: 25px;
}

.feature-card img {
  width: auto;
  height: 120px;
  margin: 0 auto 10px auto;
  display: block;
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* Bird text container ----------------------------- */

.bird-text {
  background-color: #fff;
  width: 85%;
  max-width: 900px;
  margin: 150px auto 150px auto;
  border: 1px solid #999;
  border-radius: 5px;
  padding: 50px 30px;
  font-family: 'Montserrat', 'Lato', sans-serif;  /* updated font */
  font-weight: 300;                               /* light weight for clean look */
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  box-shadow: 8px 8px 8px rgba(194, 192, 194, 1);
}

/* Image inside the box */
.bird-text img {
  width: 120px;
  height: auto;
  float: right;
  margin-top: -105px;
  margin-left: 20px;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
  .bird-text img {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
  }
}

/* Section headings */
.bird-text h2 {
  font-size: 23px;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}

.bird-text h3 {
  font-size: 18px;
  font-weight: 400;
  color: #0066cc;
  margin: 20px 0 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

/* Paragraph text */
.bird-text p {
  font-size: 16px;
  margin-bottom: 15px;
}

/* Emoji / highlights */
.bird-text .highlight {
  color: #cc0099;
  font-size: 18px;
}

/* Remove border parts and shadow on mobile */
@media (max-width: 600px) {
  .bird-text {
    border:none;
    box-shadow: none;
  }
}

/* margin for mobile */
@media (max-width: 600px) {
  .bird-text {
margin: 10px auto 30px auto;  }
}

.special-heading {
  font-size: 23px;   /* same as other section headings */
  font-weight: 400;
  margin-bottom: 20px;
  color: #000;
  text-align: left;  /* desktop default */
}

@media (max-width: 768px) {
  .special-heading {
    text-align: center; /* mobile override */
  }
}

/* Default - desktop */
.desktop-break::after {
  content: "\A";   /* insert a line break */
  white-space: pre; 
}

/* Mobile - remove the break */
@media (max-width: 768px) {
  .desktop-break::after {
    content: "";   /* no break */
  }
}


/*   END BIRD TEXT SECTION --------------------- */

/* Safe, Private & Trusted */
.safe-section {
  background-color: #f2f2f2; /* same grey tone as features */
  color: #252525;
  padding: 60px 20px;
  text-align: center;
}

.safe-section h2 {
  font-size: 23px;
  margin-bottom: 20px;
  font-weight: 400;
}

.safe-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.safe-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.safe-badge {
  background: #fff;
  border: 1px solid #ccc;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Why DreamDateUK Section --------------------- */
.dduk-why-wrapper {
  background-color: #fff;
  width: 100%;
  max-width: 900px;
  margin: 40px auto 60px auto;
  padding: 40px 20px;
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-size: 16px;
  font-weight:300;
  color: #333;
  line-height: 1.6;
  text-align: center;            /* centers text on desktop */
  box-sizing: border-box;
  overflow-wrap: break-word;
}

/* Main heading */
.dduk-why-heading {
  font-size: 23px;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
  text-align: center;            /* ensure centered by default */
}

/* Text paragraphs */
.dduk-why-text {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 300;
  text-align: center;            /* centered on desktop */
}

/* Highlighted text */
.dduk-highlight-blue {
  color: #0066cc;
  font-weight: 400;
}

.dduk-highlight-red {
  color: #cc0099;
  font-weight: 400;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .dduk-why-wrapper {
    width: 95%;
    padding: 30px 15px;
    text-align: left;            /* paragraphs shift left */
  }

  .dduk-why-heading {
    text-align: center;          /* heading stays centered */
    font-size: 23px;             /* keep size consistent */
  }

  .dduk-why-text {
    font-size: 15px;
    text-align: left;            /* paragraphs left-aligned */
  }

  .dduk-why-text.first-line {
    text-align: left;            /* special handling for first line */
  }
}

/* END Why DreamDateUK Section ------------------ */

/* OTHER FEATURES Section ------------------ */
.other-features-bg {
  width: 100%;
  background-color: #f2f2f2; /* slightly softer grey */
  padding: 60px 0;
}

.other-features {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Montserrat', 'Lato', sans-serif;
  color: #333;
}

/* Section title */
.other-features .section-heading {
  font-size: 23px;
  font-weight: 500;
  color: #222;
  margin-bottom: 50px;
}

/* Grid for features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two columns desktop */
  gap: 40px 60px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* one column on mobile */
    gap: 30px;
  }
}

/* Individual feature items */
.other-features .feature-item h3 {
  font-size: 19px;
  font-weight: 500;
  color: #07079f;
  margin-bottom: 12px;
}

.other-features .feature-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0 auto;
  max-width: 90%;
}

/* Ending note */
.other-features .section-ending {
  font-size: 20px;
  font-weight: 500;
  margin-top: 50px;
  color: #222;
}

.wrapper-socmed {
  padding: 70px 0 10px 0px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
}

.socmed-heading {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}

.socmed-icons {
  display: flex;
  justify-content: center;
  gap: 20px; /* spacing between icons */
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.soc-icon {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 50%;
  cursor: pointer;
}

/* Hover effects */
.ytimage:hover {
  box-shadow: 0 0 30px red;
  transform: scale(1.1);
}

.fbimage:hover {
  box-shadow: 0 0 30px #1877F2; /* official Facebook blue */
  transform: scale(1.1);
}

.instimage:hover {
  box-shadow: 0 0 30px #E1306C; /* closer to Instagram pink */
  transform: scale(1.1);
}

.twitimage:hover {
  box-shadow: 0 0 30px #1DA1F2; /* official Twitter/X blue */
  transform: scale(1.1);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .soc-icon {
    width: 40px;
    height: 40px;
  }
}


/* dduk PLAYSTORE APP ------------------------------- */

/* App Section Styling */
.app-section {
  text-align: center;
  margin: 60px auto 80px auto;       /* spacing above and below */
  padding-top: 80px;                  /* spacing above badge */
  padding-bottom:30px;
  border-top: 2px solid #ccc;         /* top border */
  width: 75%;                         /* border width */
}

/* Text above badge */
.app-section .app-text {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}

/* Play Store Badge */
.playstore-badge {
  width: 180px;
  height: auto;
  margin-top: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.playstore-badge:hover {
  transform: scale(1.1);
  /* subtle directional glow: yellow left, pink right */
  box-shadow: 
    -5px 0 15px #FFD700,  /* yellow glow on left */
    5px 0 15px #FF69B4;   /* pink glow on right */
  transition: all 0.3s ease;
}



/* END dduk PLAYSTORE APP ------------------------------- */


/* Footer wrapper ----------------------------- */
.footer {
  background-color: #252525;
  color: #fff;
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  padding: 40px 20px 60px;
  border-top: 5px solid transparent;
  border-image: linear-gradient(
    to right, blue, yellow, pink, purple, turquoise, orange, green, red
  ) 1;
  text-align: center;
  box-sizing: border-box;
}

/* Footer links container */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 40px auto 100px;
}

.footer-links-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Links general */
.footer-links-group a {
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

/* Yellow group */
.group-yellow a {
  color: #dcd1a6;
}
.group-yellow a:hover {
  color: #FFFFFF;
}

/* Blue group */
.group-blue a {
  color: #d1edf7;
}
.group-blue a:hover {
  color: #FFFFFF;
}

/* Footer image */
.footer-image {
  margin-bottom: 20px;
}
.footer-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Hide footer image on smaller screens */
@media (max-width: 768px) {
  .footer-image {
    display: none;
  }
}

/* Footer bottom */
.footer-bottom {
  font-size: 14px;
  color: #ccc;
}
.footer-bottom a {
  text-decoration: none;
}

/* Footer bottom text and link - default */
.footer-bottom p,
.footer-bottom p a.dual-color {
    font-weight: normal;        /* normal weight for all text */
    color: #c0bcbc;             /* default grey color */
    text-decoration: none;      /* optional: remove underline */
}

/* Dual color effect on hover for the link only */
.footer-bottom p a.dual-color:hover {
    background: linear-gradient(to right, #ea69ff, yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease; /* smooth transition */
}



/* Responsive tweaks */
@media (max-width: 1024px) {
  .footer-links {
    flex-direction: column;
    gap: 25px;
  }
  .footer-links-group {
    justify-content: center;
  }
}

