/* ==================================================================
   RESTYLE.CSS — Omvrodektis Restyle
   Νέο, καθαρό CSS layer πάνω από το theme "inkhotel4".

   ΚΑΝΟΝΕΣ:
   - Δεν γίνεται edit στο υπάρχον style.css του theme.
   - Όλα τα νέα visual styles εδώ βασίζονται σε νέες `restyle-*` classes
     που προστίθενται δίπλα στις υπάρχουσες classes (templates / ACF blocks).
   - Αποφυγή πολύ γενικών selectors (section, h2, .button, .card) εκτός
     αν είναι μέρος ξεκάθαρης global στρατηγικής (π.χ. CSS variables παρακάτω).
   - Αποφυγή !important εκτός αν είναι πραγματικά απαραίτητο.
   - Φορτώνει πάντα ΜΕΤΑ το βασικό style.css (βλ. enqueue στο functions.php),
     άρα μπορεί να κάνει override χωρίς extra specificity tricks.

   Αρχιτεκτονική theme / conventions: βλ. worklog.md στο root του project.
   ================================================================== */

/* --------------------------------------------------
   Global Variables / Base
   Χρωματική παλέτα, τυπογραφία, spacing scale, radius κ.λπ.
   Θα συμπληρωθούν/ενημερωθούν σταδιακά καθώς προστίθενται
   screenshots στο φάκελο /screenshots.
-------------------------------------------------- */
:root {
  /* Colors — τιμές εντοπισμένες από screenshots/restyle1.png */
  /* --restyle-color-primary: ; */
  --restyle-color-accent: #778a6b; /* πράσινο-σαλβία, italic accent σε τίτλους */
  --restyle-color-text: #222222;
  --restyle-color-text-muted: #3e3e3e;
  --restyle-color-bg: #ffffff;
  --restyle-color-bg-alt: #f8f6f2; /* κρεμ φόντο γύρω από "λευκές κάρτες" */
  --restyle-color-border: #222222;

  /* Typography */
  --restyle-font-heading: 'Cormorant Garamond', serif;
  --restyle-font-body: 'Montserrat', sans-serif;

  /* Spacing scale */
  /* --restyle-space-xs: ; */
  /* --restyle-space-sm: ; */
  /* --restyle-space-md: ; */
  /* --restyle-space-lg: ; */
  /* --restyle-space-xl: ; */

  /* Radius / misc */
  /* --restyle-radius: ; */
}

body{
	background: #F8F6F2;
}
/* --------------------------------------------------
   Typography
-------------------------------------------------- */

/* Heading font — Cormorant Garamond. Χρήση σε επιλεγμένους τίτλους/hero
   κειμενα όπου θέλουμε το πιο "editorial" serif ύφος. */
.restyle-font-heading,
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .kig, .suite-excerpt {
  font-family: var(--restyle-font-heading);
}

/* Body font — Montserrat. Χρήση σε κείμενο, κουμπιά, navigation κ.λπ. */
.restyle-font-body {
  font-family: var(--restyle-font-body);
}
body, p, li a {
    font-size: 1.13rem;
    font-family: var(--restyle-font-body);
}
h1.page-title, h1 {
    color: #222;
    font-family: "Cormorant Garamond";
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
p{
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}
.suite-specs li {
    color: #222;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.h3, h3 {
    font-size: 2.5rem;
    font-weight: 500;
	color: #222;
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
			
}

.cta-top-buttons button a {
    color: #222;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: unset;
}
.breadcrumbs a, 
.breadcrumbs span {
    text-transform: uppercase;
    color: #222;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;    
    
}


/* --------------------------------------------------
   Header / Navigation
-------------------------------------------------- */


/* --------------------------------------------------
   Buttons
-------------------------------------------------- */


/* --------------------------------------------------
   Forms
-------------------------------------------------- */


/* --------------------------------------------------
   Sections
-------------------------------------------------- */
/* restyle-slider — shortcode [import_slider] μέσα σε wrapper .restyle-slider
   (βλ. σελίδα /restyle-home/, wp-block-columns .village-slider.restyle-slider).
   Το markup h3.slide-title παράγεται από
   includes/post-types/post-type-slider.php (γρ. 371).
   Base styles theme: style.css .slider--home-carousel h3.slide-title (γρ. 992,
   Gotham / 18px / 400 / letter-spacing 1.8px) + uppercase που κληρονομείται
   από το .keg anchor (γρ. 954). Εδώ γίνεται override ΜΟΝΟ του τίτλου, scoped
   στο .restyle-slider — δεν επηρεάζεται το slider της κανονικής home. */
.restyle-slider h3.slide-title {
  color: #222;
  font-family: var(--restyle-font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
  text-transform: none;
}
/* slidedesc — το κείμενο κάτω από τον τίτλο κάθε slide
   (markup: post-type-slider.php γρ. 372, <div class="slidedesc"><p>).
   Base theme: style.css .slidedesc * (γρ. 2277, Gotham/14px/0.7px).
   Override scoped στο .restyle-slider — δεν επηρεάζεται το slider
   της κανονικής home. */
.restyle-slider .slidedesc p {
  color: #222;
  font-family: var(--restyle-font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.9px;
}


/* Spacing Restyle New Classes */
.margin-top-medium {
    margin-top: 200px;
}
/* --------------------------------------------------
   ACF Blocks
-------------------------------------------------- */

/* restyle-acf-two-col-scroll
   ACF block "Two Column Scroll" (blocks/two-col-scroll/two-col-scroll.php).
   Αριστερά: λευκή sticky κάρτα (.two-col-scroll__text) με τίτλο/κείμενο/
   κουμπί. Δεξιά: scrolling εικόνες (.two-col-scroll__media).
   Πρώτη εφαρμογή: homepage intro section, βλ. screenshots/restyle1.png.
   Το layout (flex/sticky/gap) παραμένει όπως στο block's δικό του
   style.css — εδώ προστίθεται μόνο το νέο οπτικό layer. */

.restyle-acf-two-col-scroll {
  background-color: var(--restyle-color-bg-alt);
  padding: 100px 0;
}

.restyle-acf-two-col-scroll .two-col-scroll__text {
  background-color: var(--restyle-color-bg);
  padding: 64px 56px;
  box-sizing: border-box;
}

.suite-row .restyle-acf-two-col-scroll .two-col-scroll__text{
    background-color: unset;
}

.restyle-acf-two-col-scroll .two-col-scroll__title {
  font-family: var(--restyle-font-heading);
  line-height: 1.2;
}

/* 1η γραμμή τίτλου — tcs_title. Τιμές ακριβώς από Figma export. */
.restyle-acf-two-col-scroll .two-col-scroll__title-main {
  display: block;
  color: #222222;
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* 2η γραμμή τίτλου — tcs_title_accent (νέο ACF field). Τιμές ακριβώς από Figma export. */
.restyle-acf-two-col-scroll .two-col-scroll__title-accent {
  display: block;
  color: #778a6b;
  font-size: 45px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

/* Decorative graphic — εμφανίζεται όταν tcs_show_graphic = true */
.restyle-acf-two-col-scroll .two-col-scroll__graphic {
  display: block;
  margin: 20px 0 32px;
  max-width: 220px;
  height: auto;
}

.restyle-acf-two-col-scroll .two-col-scroll__content {
  font-family: var(--restyle-font-body);
}

/* Αν το tcs_content (rich text) ξεκινά με heading (π.χ. h3/h4), αυτό
   παίζει το ρόλο του μικρού uppercase label πάνω από την παράγραφο —
   με το διακοσμητικό διαχωριστή "γραμμή-λουλούδι-γραμμή" από πάνω. */
/* Label (π.χ. "Rooms & Suites with Private Pools and Gardens"). Τιμές ακριβώς από Figma export. */
.restyle-acf-two-col-scroll .two-col-scroll__content h3,
.restyle-acf-two-col-scroll .two-col-scroll__content h4 {
  color: var(--restyle-color-text);
  font-family: var(--restyle-font-body);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 186.667% */
  letter-spacing: normal;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 16px;
}

.restyle-acf-two-col-scroll .two-col-scroll__content h3::before,
.restyle-acf-two-col-scroll .two-col-scroll__content h4::before {
  /* content: "";
  display: block;
  width: 100%;
  max-width: 220px;
  height: 25px;
  margin-bottom: 20px; */
  /* Πραγματικό Figma asset (152x17), βλ. assets/graphic.svg → αντιγράφηκε στο
     assets/media/icons/graphic-divider.svg. Αντικαθιστά το προηγούμενο
     πρόχειρο inline data-uri approximation. */
  background: url("assets/media/icons/graphic-divider.svg") center / contain no-repeat;
}

/* Body text (π.χ. "Twelve private living spaces..."). Τιμές ακριβώς από Figma export
   — προσοχή: heading font (Cormorant Garamond), όχι body font, και χρώμα #222 (όχι muted). */
.restyle-acf-two-col-scroll .two-col-scroll__content p {
  color: var(--restyle-color-text);
  font-family: var(--restyle-font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}

/* Amenities (content type: amenities) — inline λίστα, βλ. screenshots/restyle1-amenities.png.
   Category title (π.χ. "Kitchen & Dining") και list items. Τιμές ακριβώς από Figma export. */
.restyle-acf-two-col-scroll .two-col-scroll__amenities-title {
  color: #222222;
  font-family: var(--restyle-font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  margin: 0;
}

.restyle-acf-two-col-scroll .two-col-scroll__amenities-list li {
  color: #222222;
  font-family: var(--restyle-font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 218.75% */
}

/* Button ("READ MORE"). Τιμές ακριβώς από Figma export (text-transform: uppercase
   έρχεται ήδη από το base blocks/two-col-scroll/style.css). */
.restyle-acf-two-col-scroll .two-col-scroll__button {
  font-family: var(--restyle-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  border: 1px solid #222222;
  border-radius: 0;
  background-color: transparent;
  color: #222222;
  padding: 16px 40px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.restyle-acf-two-col-scroll .two-col-scroll__button:hover {
  background-color: var(--restyle-color-text);
  color: var(--restyle-color-bg);
  border-color: var(--restyle-color-text);
}

.restyle-acf-two-col-scroll .two-col-scroll__media {
  gap: 32px;
}

/* restyle-acf-full-screen-scroll
   ACF block "Full Screen Scroll" (blocks/full-screen-scroll/full-screen-scroll.php).
   Full viewport height section, background photo με σκούρο overlay (ίδιο
   27% overlay με το παλιό .before-footer, βλ. style.css), κείμενο λευκό.
   Insertable block μόνο (π.χ. homepage "Arrive gently." section) — ΔΕΝ
   αντικαθιστά το hardcoded before-footer markup στο single-suite.php /
   archive-suite.php. Το layout (position/flex/vh) παραμένει στο block's
   δικό του style.css — εδώ προστίθεται μόνο το νέο οπτικό layer. */

.restyle-acf-full-screen-scroll .full-screen-scroll__overlay {
  background: linear-gradient(rgb(0 0 0 / 27%), rgba(0 0 0 / 27%));
}

.restyle-acf-full-screen-scroll .full-screen-scroll__text {
  color: #ffffff;
}

.restyle-acf-full-screen-scroll .full-screen-scroll__title {
  font-family: var(--restyle-font-heading);
  line-height: 1.2;
}

/* 1η γραμμή τίτλου — fss_title. Τιμές ακριβώς από Figma export ("Arrive gently."). */
.restyle-acf-full-screen-scroll .full-screen-scroll__title-main {
  display: block;
  color: #fff;
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* 2η γραμμή τίτλου — fss_title_accent (italic), π.χ. "Settle in...". Τιμές ακριβώς από Figma export. */
.restyle-acf-full-screen-scroll .full-screen-scroll__title-accent {
  display: block;
  color: #fff;
  font-size: 45px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

/* Decorative graphic — εμφανίζεται όταν fss_show_graphic = true. Ίδιο asset
   με το two-col-scroll (assets/media/images/graphic.svg). */
.restyle-acf-full-screen-scroll .full-screen-scroll__graphic {
  margin: 20px 0 32px;
  max-width: 220px;
  height: auto;
}

/* fss_graphic_white — μετατρέπει το (σκούρο) SVG σε λευκό μέσω CSS filter,
   χωρίς να χρειάζεται δεύτερο αρχείο asset. */
.restyle-acf-full-screen-scroll .full-screen-scroll__graphic--white {
  filter: brightness(0) invert(1);
}

/* Body text (fss_content). Τιμές ακριβώς από Figma export. */
.restyle-acf-full-screen-scroll .full-screen-scroll__content p {
  color: #fff;
  font-family: var(--restyle-font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.restyle-acf-full-screen-scroll .full-screen-scroll__button {
  font-family: var(--restyle-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  border: 1px solid #fff;
  border-radius: 0;
  background-color: transparent;
  color: #fff;
  padding: 16px 40px;
  display: inline-block;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.restyle-acf-full-screen-scroll .full-screen-scroll__button:hover {
  background-color: #fff;
  color: var(--restyle-color-text);
  border-color: #fff;
}


/* --------------------------------------------------
   Suites Hover Gallery (shortcode: [suites-hover-gallery])
   Πηγή: functions.php, add_shortcode('suites-hover-gallery', ...).
   Το CSS/JS ήταν πριν inline μέσα στο PHP· μεταφέρθηκε εδώ + σε
   assets/scripts/js/suites-hover-gallery.js για οργάνωση.

   Δύο layers:
   1) Baseline (χωρίς scope) — το crossfade behavior του image stage.
      ΠΑΝΤΑ ενεργό, σε όποια σελίδα κι αν μπει το shortcode, ώστε να μη
      σπάσει η βασική λειτουργικότητα (hover → αλλαγή εικόνας).
   2) Restyle (scoped κάτω από #suites-hover-gallery) — το νέο οπτικό layer
      από το Figma (βλ. screenshots/suites-hover-gallery.png). Ενεργοποιείται
      ΜΟΝΟ όπου έχει μπει το HTML anchor "suites-hover-gallery" στο εξωτερικό
      wp-block-columns wrapper της σελίδας (Block Editor > Advanced > HTML
      Anchor). Σε WPML: πρέπει να μπει το ίδιο anchor σε κάθε μεταφρασμένη
      έκδοση της σελίδας ξεχωριστά.
-------------------------------------------------- */

/* 1) Baseline — functional, unscoped */
.suites-hover-section .suites-image-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f6f6f6;
}

.suites-hover-section .suite-stage-img,
.suites-hover-section .suite-stage-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.suites-hover-section .suite-stage-placeholder {
  display: grid;
  place-items: center;
  color: #aaa;
}

.suites-hover-section .suite-stage-img.is-active,
.suites-hover-section .suite-stage-placeholder.is-active {
  opacity: 1;
}

.suites-hover-section .suites-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.suites-hover-section .more-heading {
  margin-bottom: 40px;
}

.suites-hover-section .suite-link:hover,
.suites-hover-section .suite-link:focus {
  outline: none;
}

/* Ίδιες τιμές με το παλιό inline CSS (#<dynamic-id> .suite-link +
   .suites-hover-left .suite-link / .suites-hover-left a.suite-link,
   merged — το net αποτέλεσμα ήταν το ίδιο και στα δύο). */
.suites-hover-left .suite-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background-color .2s ease, color .2s ease;
  letter-spacing: 1px;
  position: relative;
}

/* Underline hover effect (γραμμή που "μεγαλώνει" προς τα δεξιά) — ίδιο
   με το παλιό inline CSS. */
.suites-hover-left ul.wp-block-list.suites-list.amenities-list li:after {
  content: '';
  height: 2px;
  background: #222222;
  display: inline-flex;
  position: absolute;
  bottom: 50%;
  left: 100%;
  width: 0%;
  transition: width 0.3s ease;
}

.suites-hover-left ul.wp-block-list.suites-list.amenities-list li:hover:after {
  width: 45%;
}

/* Το παλιό inline CSS είχε αυτόν τον κανόνα hardcoded στο id "suites-hover-2"
   (τυχαία τιμή wp_unique_id() τη στιγμή που γράφτηκε — δεν ταιριάζει πάντα).
   Εδώ γίνεται με τη σταθερή δομική κλάση, ώστε να δουλεύει σε κάθε render. */
.suites-hover-section .wp-block-column.steady-text.steady-text-amenities .wp-block-buttons {
  margin-top: 50px;
}

/* Video (bottom-left flower) — κρυμμένο by default εκτός restyle scope,
   ώστε να μην εμφανιστεί ανεπιθύμητα σε σελίδες χωρίς το νέο anchor. */
.suites-hover-section .suites-hover-video {
  display: none;
}

/* 2) Restyle — scoped κάτω από το HTML anchor "suites-hover-gallery" */

/* Το 670x660 του Figma ήταν το rendered μέγεθος του box σε ΣΥΓΚΕΚΡΙΜΕΝΟ
   πλάτος οθόνης, όχι σταθερό aspect-ratio — το box περιέχει δυναμική λίστα
   (μεταβλητό αριθμό suites), οπότε height:auto (hugs content) αντί για
   aspect-ratio· αλλιώς είτε "κόβεται" περιεχόμενο είτε ξεχειλίζει έξω από
   το lavender background ανάλογα με το πόσα suites υπάρχουν. */
#suites-hover-gallery .steady-text-amenities {
  position: relative;
  width: 100%;
  background: #D5D1D8;
  padding: 55px 85px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 0;
  top: unset;
  align-self: stretch;
}

#suites-hover-gallery .more-heading {
  display: block;
  width: 100%;
  max-width: 387px;
  color: #222;
  font-family: var(--restyle-font-heading);
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

/* Διακοσμητικό divider (γραμμή-λουλούδι-γραμμή), ίδιο asset με το
   two-col-scroll, recolored αντίγραφο σε accent χρώμα #B8A8C7. */
#suites-hover-gallery .more-heading::after {
  content: "";
  display: block;
  width: 152px;
  max-width: 100%;
  height: 17px;
  margin-top: 24px;
  background: url("assets/media/icons/graphic-divider-accent.svg") left center / contain no-repeat;
}

#suites-hover-gallery .suites-list {
  gap: 12px;
  margin: 40px 0 0;
  list-style: none;
}

/* Το παλιό underline hover effect (li:after) αντικαθίσταται εδώ από το
   translateX + italic hover του νέου design — δεν εμφανίζεται πλέον
   μέσα στο restyle scope. */
#suites-hover-gallery .suites-hover-left ul.wp-block-list.suites-list.amenities-list li:after {
  content: none;
}

#suites-hover-gallery .suite-item .suite-link {
  display: inline-block;
  width: 100%;
  max-width: 353px;
  color: #222;
  font-family: var(--restyle-font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: transform 0.25s ease;
  will-change: transform;
  padding: 10px 0px;
}

#suites-hover-gallery .suite-item .suite-link:hover,
#suites-hover-gallery .suite-item .suite-link:focus,
#suites-hover-gallery .suite-item .suite-link[aria-selected="true"] {
  transform: translateX(20px);
  color: #222;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--restyle-font-heading);
}

#suites-hover-gallery .wp-block-buttons {
  margin-top: 40px;
}

#suites-hover-gallery .wp-block-button__link {
  border: 1px solid #222;
  border-radius: 0;
  background-color: transparent;
  color: #222;
  font-family: var(--restyle-font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

#suites-hover-gallery .wp-block-button__link:hover {
  background-color: #222;
  color: #fff;
  border-color: #222;
}

/* flower-video-final.mp4 — πηγαίο αρχείο 720x1280 (κάθετο, 9:16), όχι
   τετράγωνο/landscape. Μπαίνει ΜΕΣΑ στη ροή (όχι absolute) μετά το button,
   ώστε να μην καλύπτει ποτέ τα suite links ανεξάρτητα από το πλήθος suites —
   έτσι καταλήγει οπτικά "κάτω-αριστερά" μέσα στο box χωρίς ρίσκο overlap. */
#suites-hover-gallery .suites-hover-video {
  display: block;
  width: 100px;
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: cover;
  margin-top: 32px;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 989.98px) {
  #suites-hover-gallery .steady-text-amenities {
    padding: 40px 32px;
  }

  #suites-hover-gallery .more-heading {
    font-size: 32px;
  }

  #suites-hover-gallery .suites-hover-video {
    width: 80px;
  }
}



/* --------------------------------------------------
   Footer
-------------------------------------------------- */
.footer {
    background: #F8F6F2;
}
/* --------------------------------------------------
   Footer
   Restyle typography — αντικαθιστά μόνο fonts/sizes πάνω από το style.css.
   Οι ίδιοι selectors με το style.css, φορτώνει μετά => υπερισχύει.
-------------------------------------------------- */

/* Footer menu links — Cormorant Garamond */
.menu-footer-menu-container ul li a {
  color: #222;
  font-family: var(--restyle-font-heading);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 55px;
}

/* Column headings (h3) — Cormorant Garamond */
footer h3 {
  color: #222;
  font-family: var(--restyle-font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Contact data — Montserrat */
.contact-data span,
.contact-data span a {
  color: #222;
  font-family: var(--restyle-font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}

/* Newsletter submit (SEND) — Montserrat, τετράγωνο border */
input.wpcf7-form-control.wpcf7-submit.has-spinner {
  border: 1px solid #222;
  border-radius: 0;
  color: #222;
  font-family: var(--restyle-font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

/* Copyright & Created by INK — Montserrat */
.bottom-footer-container .copyright,
.bottom-footer-container .createdbyink {
  color: #222;
  font-family: var(--restyle-font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

/* Bottom menu links (Cookies / Terms) — Montserrat, right aligned */
.menu-bottom-menu-container ul li a {
  color: #222;
  text-align: right;
  font-family: var(--restyle-font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
}

.bottom-footer-container ul li:not(:last-child):after{
  top: calc(50% - 6px);
}
p.contact-txt {
    color: #222;
    font-family: "Cormorant Garamond";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
}

.wp-block-column.contact-info h4.wp-block-heading {
    color: #222;
    font-family: "Cormorant Garamond";
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.wpcf7 input[type="email"]::placeholder,
.wpcf7 [type=text]::placeholder,  
.wpcf7 textarea::placeholder{
color: #222;
font-family: Gotham;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 30px; /* 214.286% */
}

.wpcf7 input[type="email"], 
.wpcf7 [type=text],  
.wpcf7 textarea {
    border: none;
    background: none;
    box-shadow: none;
    border-bottom: 1px solid;
    color: #222;
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
}
textarea[rows]
 {
    height: 11rem;
}

.wpcf7 input[type="email"]::placeholder,
.wpcf7 [type=text]::placeholder,  
.wpcf7 textarea::placeholder{
color: #778A6B;
font-family: "Cormorant Garamond";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 28px; /* 155.556% */
}

.wp-block-column.formcontact.is-layout-flow.wp-block-column-is-layout-flow {
    background: white;
    padding: 40px;
}

ul.social-icons-list li.social-icon a {
color: #222;
font-family: "Cormorant Garamond";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
/* --------------------------------------------------
   Responsive
-------------------------------------------------- */

@media (max-width: 989.98px) {
  .restyle-acf-two-col-scroll {
    padding: 60px 0;
  }

  .restyle-acf-two-col-scroll .two-col-scroll__text {
    max-width: 100%;
    padding: 40px 32px;
  }

  .restyle-acf-two-col-scroll .two-col-scroll__title-main {
    font-size: 32px;
  }

  .restyle-acf-two-col-scroll .two-col-scroll__title-accent {
    font-size: 30px;
  }

  .restyle-acf-full-screen-scroll .full-screen-scroll__title-main {
    font-size: 32px;
  }

  .restyle-acf-full-screen-scroll .full-screen-scroll__title-accent {
    font-size: 30px;
  }
}

.grecaptcha-badge {
    visibility: collapse !important;
}

@media screen and (max-width:781px){
	div#sc-13{
	    height: 40rem;
	}
	
    .margin-top-medium {
        margin-top: 0rem;
    }	
}
@media screen and (max-width:767px){
    #checkoutForm.restyle-checkout-form .checoutform {
        align-items: center;
        justify-content: center;
        background: unset;
        backdrop-filter: unset;
        -webkit-backdrop-filter: unset;
        box-shadow: unset;
        border: none;
    }
    
    #checkoutForm.restyle-checkout-form .checoutform .cell.chek.cell-abs {
        background: rgba(255, 255, 255, 0.20);
        backdrop-filter: blur(7.5px);
        -webkit-backdrop-filter: blur(7.5px);
        box-shadow: 0px 4px 20px rgba(0, 0, 0, .25);
        padding: 10px;
        align-content: center;
    }
    
    #checkoutForm.restyle-checkout-form .cell.chek .titl {
        margin: 0;
    }


    .full-screen-scroll, .full-screen-scroll__inner {
        min-height: unset;
    }
    
    .full-screen-scroll {
        height: 65vh;
    }
    
    .full-screen-scroll .full-screen-scroll__inner {
        height: 100%;
        align-items: center;
    }
    
    .restyle-acf-full-screen-scroll .full-screen-scroll__text {
        height: 100%;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
    
}
