/*
Sections
1. Global Styles - line 10
2. Header - line 135
3. Navigation - line 137
4. Footer - line 139
5. Home Hero Section - line 141
6. Services Overview Section - line 284
7. About Section - line 342
8. Services Section - line 470
9. Industry Focus Section - line 626
10. Contact Intro Section - line 748
*/

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");



/* GLOBAL STYLES */
:root {
    --color-primary: #1D1D1B;
    --color-secondary: #565759;
    --color-background: #F9F9F9;
    --color-secondary-background: #FCF6EC;
    --color-border: #EAE7E3;
    --color-surface: #ffffff;
    --color-text: #5e564f;
    --color-text-muted: #565759;
    --color-shadow: rgba(36, 35, 80, 0.12);
    --color-sunset:#FBCF92;
    --font-body: "Manrope", ui-sans-serif, sans-serif;
    --font-section-heading: "Manrope", "Segoe UI", sans-serif;
    --font-section-title: "Cormorant Garamond", "Times New Roman", serif;
    --container-width: min(85%, calc(100% - 180px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
  
}

body {
    margin: 0;
    max-width: 2560px;
    margin-inline: auto;
    font-family: var(--font-body);
    letter-spacing:0.6px;
    color: var(--color-text);
      box-shadow:  1px 8px 8px rgba(0, 0, 0, 0.1),
                 -1px 0px 1px rgba(0, 0, 0, 0.1) ;
   
}


img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height:1.6;
    font-size: 0.9vw;
}

@media (max-width: 1024px) {
    p {
        font-size: 1.1rem;
    }
}

.row-container {
    width: var(--container-width);
    margin: 0 auto;
}

.page-layout {
    width: 100%;
}

.h2-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--font-section-heading);
    color: var(--color-secondary);
}

@media (max-width: 1024px) {
    .h2-section-title {
        font-size: 0.7rem;
    }
}


.h3-section-title {
    margin: 0 0 18px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-family: var(--font-section-heading);
    color: var(--color-primary);
}



.p-hero-section-title {
    margin: 0;
    font-family: var(--font-section-title);
    font-size: clamp(4.85rem, 5.5vw, 6.6rem);
    font-weight: 200;
    line-height: 1.04;
  
    color: var(--color-primary);
}


.p-section-title {
    margin: 0;
    font-family: var(--font-section-title);
    font-size: clamp(2.85rem, 3.5vw, 3.6rem);
    font-weight: 200;
    line-height: 1.12;
    color: var(--color-primary);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 54px;
    padding: 18px 0px 18px 0px;
    border-bottom: 1px solid var(--color-text);
    font-size: 1.27rem;
    font-weight: 700;
     

}



.button-primary {
   color: var(--color-primary);
   gap: 10px;
       transition: padding-right 1.0s ease; /* speed */
    
} 

.button-primary::after {
    content: "\2192";
    display: inline-block;
    line-height: 1;
    transform-origin: left center;
    transition: transform 320ms ease;
}

.button-primary:hover {
    padding-right:10px;
    
}

.button-primary:hover::after {
    transform: scaleX(1.45);
}



.button-secondary {
    border-color: var(--color-border);
    background-color: transparent;
    color: var(--color-primary);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 26px rgba(36, 35, 80, 0.08);
}

@media (max-width: 1024px) {
    :root {
        --container-width: min(100% - 70px, 1180px);
    }

    .p-section-title,
    .p-hero-section-title {
        max-width: none;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.3;
    }

    .button.button-primary {
      

        margin-left:auto;
        margin-right:auto;
    }
}



/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 14px 0;
    background-color: white;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.row-container.header-inner {
    width:90%;
}

.header-logo {
    display: inline-flex;
    align-items: center;
}

.header-logo img {
    width: 322px;
    height: auto;
}

.header-menu-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.header-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    background-color: var(--color-surface);
    color: var(--color-primary);
    cursor: pointer;
}

.header-menu-line {
    width: 18px;
    height: 1px;
    background-color: currentColor;
}

.header-menu-text {
    font-size: calc(1.2vw + 7px);
    font-weight: 600;
    text-transform: uppercase;
}

/* Navigation */

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2% 3%;
}

.header-nav a {
    font-size: 0.80rem;
    font-weight: 400;
    letter-spacing: 0.26em;
    color: var(--color-text);
}

@media (min-width: 1921px) {
    .header-nav a {
        font-size: 1.1rem;
    }
}

.header-nav a:hover {
    color: var(--color-secondary);
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    color: var(--color-primary, #0d5eaf);
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.lang-switcher:hover {
    background-color: rgba(13, 94, 175, 0.1);
}

.lang-switcher img {
    height: 18px;
    width: auto;
    vertical-align: middle;
    margin-right: 6px;
    display: inline-block;
}



.header-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--color-primary);
    border-radius: 3px;
    background-color: var(--color-primary);
    color: var(--color-surface);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta-button:hover,
.header-cta-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 34px rgba(36, 35, 80, 0.22);
}

.header-cta-button::after {
    content: "→";
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 1024px) {
    .site-header {
        padding: 10px 0 12px;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .header-logo {
        justify-self: start;
    }

    .header-logo img {
        width: 350px;
    }

    .header-menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .header-nav {
        display: none;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 30px;
        padding-top: 30px;
    }

    .header-nav a {
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--color-border);
    }

    .header-cta-button {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 40px;
        margin-bottom:20px;
    }

    .header-menu-checkbox:checked ~ .header-nav {
        display: flex;
        border-top: 1px solid var(--color-border);

    }

    .header-menu-checkbox:checked ~ .header-cta-button {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    .header-logo img {
        width: 220px;
    }
}

/* Footer */

.site-footer {
    padding: 0 0 26px;
    background-color: #000000;
    color: #ffffff;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 44px;
    align-items: start;
    padding: 56px 0 42px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.28);
}

.footer-brand-column,
.footer-nav-column,
.footer-contact-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.footer-brand-title {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #ffffff;
    font-family: var(--font-section-title);
}

.footer-brand-divider {
    width: 100%;
    max-width: 360px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.42);
}

.footer-brand-description {
    margin: 0;
    max-width: 40ch;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
}


.footer-contact-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}


.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    font-size: 0.95rem;
    color: #ffffff;
}

.footer-contact-icon.fa-solid {
    font-size: 1rem;
    line-height: 1;
}



.footer-nav-column a,
.footer-contact-column a,
.footer-contact-column p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ffffff;
}

.footer-contact-column a:hover {
    text-decoration: underline;
}

.footer-map-column {
    width: 100%;
    min-height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-map-column iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
    filter: grayscale(100%);
}



.footer-copyright-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding-top: 18px;
}

.footer-copyright-row p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-border);
}

.footer-legal-links {
    display: flex;
    gap: 18px;
}


    span .eight {
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
    }



@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 44px 0 32px;
    }

    .footer-map-column,
    .footer-map-column iframe {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand-column {
        grid-column: auto;
    }

    .footer-copyright-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-legal-links {
        gap: 14px;
    }
}

/* Home Hero Section */

.hero-section {
    padding: 10% 0px;
    background:  
        linear-gradient(rgba(252, 246, 236, 0.43),
            rgba(252, 246, 236, 0.68)
            
        ),url("media/hero.webp");
       
  
    background-size: 100% 100%, 110%;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;

}





#home.hero-section.hero-zoom-active {
    animation: hero-background-breath 18s ease-in-out infinite;
}

@keyframes hero-background-breath {
    0% {
        background-size: 100% 100%, 110%;
    }
    50% {
        background-size: 100% 100%, 116%;
    }
    100% {
        background-size: 100% 100%, 110%;
    }
}



.hero-copy {
    padding: 42px 0;
}

.hero-description {
    margin: 28px 0 0;
    max-width: 42ch;
    font-size: 1.35rem;
    font-weight:500;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}




/* About Section */

.about-section {
    padding: 88px 0;
    background-color: var(--color-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: center;
    gap: 60px;
}

.about-visual {
    position: relative;
    padding: 0 22px 22px 0;
}

.about-visual img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 3px;
}


.description-flex {
    display: flex;
    gap: 24px;
}

.about-description {
    margin: 24px 0px ;
    font-size: 1.03rem;
    line-height: 1.85;
    color: var(--color-text-muted);
}

.about-divider {
    width: 100%;
    height: 1px;
    margin: 34px 0 28px;
    background-color: var(--color-border);
}


/* Experience Section */


.experience-intro {
    padding-bottom: 36px;
}

.experience-cards-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
}

.experience-card {
    position: relative;
   min-height:660px;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1024px) and (min-width: 641px) {
    .experience-card {
        min-height: 860px;
    }
}


.experience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 28, 0.12) 0%, rgba(11, 18, 28, 0.58) 100%);
}

.experience-card .h2-section-title {
    color: #ffffff;
}

.experience-card-content {
    position: relative;
    z-index: 1;
    max-width: 320px;
    color: #ffffff;
}

.experience-card-content h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.experience-card-content p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
}

.experience-card-sea {
    background-image: url("media/bebop-restaurant-sushi.webp");
}

.experience-card-sunset {
    background-image: url("media/bebop-restaurant-cocktail-making.webp");
}

.experience-card-craft {
    background-image: url("media/bebop-restaurant-sunset.webp");
}

@media (max-width: 1024px) {
    .the-experience {
        padding-top: 68px;
    }

    .experience-cards-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .experience-card {
        
         background-size: fit;
    }
}


/*Sounds section */

.the-sounds-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100%;
}

@media (max-width: 1024px) {
    .the-sounds-grid {
        grid-template-columns: 1fr;
    }
}


.the-sounds-image img {
    position: relative;
    padding: 20%;
    border-radius:50%;
}

.sounds-spin-on-view {
    transform: rotate(0deg);
    transform-origin: center;
    will-change: transform;
}

.sounds-spin-on-view.sounds-spin-active {
    animation: sounds-spin-once 15s linear 1;
}

@keyframes sounds-spin-once {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.the-sounds-content {
    position: relative;
    z-index: 1;
    padding:10%;
    margin-top:auto;
    margin-bottom:auto;
}


/* The Place */

.the-place {
    background-image: url("media/bebop-joomla-paroikia-sunset.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    min-height: 640px;
  
}


@media (max-width: 1024px) {

   

    .hero-section {
        padding: 35% 2% 25% 2%;
        background-size: 110% 180%, 110% 180%;
        background-position: center, center;
    }

     #home.hero-section.hero-zoom-active {
        animation: hero-background-breath-mobile 18s ease-in-out infinite;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-copy {
        padding: 14px 0 0;
    }

    
    .about-section {
        padding: 68px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-visual {
        max-width: 680px;
    }

    .about-visual img {
        min-height: 440px;
    }
}

@media (max-width: 640px) {

:root {
        --container-width: min(100% - 44px, 1180px);
    }



    .hero-description {
        font-size: 1.15rem;
    }

    .hero-actions {
        flex-direction: column;
    }

.button {
    font-size:0.95rem;
   
}



    .about-section {
        padding: 56px 0;
    }

    .description-flex {
    flex-direction: column;
}

    .about-visual {
        padding: 0 14px 14px 0;
    }

    .about-visual img {
        min-height: 360px;
    }


}

@keyframes hero-background-breath-mobile {
    0% {
        background-size: 100% 100%, 130% 130%;
    }
    50% {
        background-size: 100% 100%, 136% 136%;
    }
    100% {
        background-size: 100% 100%, 130% 130%;
    }
}



/* THE LOCATION PAGE */


.hero-section#location-hero {
    background-image:
        linear-gradient(rgba(252, 246, 236, 0.43), rgba(252, 246, 236, 0.68)),
        url("media/parikia-town.webp");
        min-height: 640px;

}


#location-hero.hero-section.hero-zoom-active {
    animation: hero-background-breath 18s ease-in-out infinite;
}


.island-section {
    padding: 15vh 0;
    background-color: var(--color-surface);
}

.island-container {
    display: flex;
    gap: 5vw;
    
}


.island-copy  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex:1.2;
}

.island-visual {
    flex:1;
   
}



@media (max-width: 1024px) {

    #location-hero.hero-section.hero-zoom-active {
        animation: hero-background-breath-mobile 18s ease-in-out infinite;
    }


    .island-container {
        flex-direction: column;
    }
}


 .three-columns  {
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 2% 4%;
    background:var(--color-background);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);

}

@media (max-width: 1024px) {
    .three-columns {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

.column {  
    padding:10% 5%;
 }

 .column .h3-section-title {
    
    margin: 0 0 18px;
    font-size: 1.8rem;
    font-weight: 400;
    font-family: var(--font-section-title);
    color: var(--color-primary);
    letter-spacing:0.5px;
 }

.find-us-section {
    padding:12vh 0;
}

 .find-us-container {
    display:flex;
    gap: 4vw;
   
 }

 @media (max-width: 1024px) {
    .find-us-container {
        flex-direction: column;
    }
}

 .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
 
}

@media (max-width: 1024px) {
  .find-us-visual {
  padding-bottom:40px;
  }
  .find-us-description {
    padding-bottom:3%;
  }
}


.find-us-info {
  margin-top:auto;
  margin-bottom:auto;
}
  

.info-left {
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  padding-bottom:6%;
  padding-top:6%;
font-size: 0.8rem;
  font-weight:500;
   letter-spacing: 0.3em;
   color: var(--color-text);
}

.info-right {
  text-align: right;
  border-bottom: 1px solid var(--color-border);
    padding-bottom:6%;
    padding-top:6%;
     color:var(--color-primary);
     letter-spacing: 0em;
     font-size: 1.0rem;
     
     
}

@media (min-width: 1921px) {
  .info-left {
   font-size: 1.3rem;
  }
  
  .info-right {
   
       font-size: 1.4rem;    
  }
}

@media (max-width: 1024px) {
  .info-left {
   font-size: 0.9rem;
  }
  
  .info-right {
   
       font-size: 1.0rem;    
  }
}

@media (max-width: 640px) {
  .info-left {
   font-size: 0.8rem;
  }
  
  .info-right {
   
       font-size: 0.9rem;    
  }
}















      





