@charset "UTF-8";
/* CSS Document */

* {
    box-sizing:border-box;
	font-synthesis: none;
}

html {
    font-size: 90%;  /* reduces everything by ~10% without breaking clamped sizes */
}

body {
    margin:0;
    height: 100%;
    width: 100%;
    background-color: #f0514e;
    font-family: work sans, Helvetica, Arial, sans-serif;
    font-weight: 200;
	font-size: clamp(12px, 1vw, 14px);
	z-index: 2;
	position:relative;
}


/* Preload all hover images */
body::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;

  background:
url("../images/instagram_hover.svg") no-repeat -9999px -9999px,
url("../images/linkedin_hover.svg") no-repeat -9999px -9999px;
}


.layoutgrid {
    display: grid;
	width:100vw;
    grid-template-columns: 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw;
    grid-template-rows: 100vh auto; /* Two full-height rows for hero, rest as needed */
    margin: 0;
    padding: 0;
	
   
   
	
	/*Make grid visible 
	background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: calc(100% / 16) 100%, 100% calc(100% / 12);
	/*End make grid visible */
}

a:link, a:visited, a:active {
    text-decoration: none;
    color:#1D1D1B;
}

a:hover {
    text-decoration: none;
    color:#9F9F9F;
}

img {
    border-style: none;
}

em, i {
  font-style: italic;
}
    




/*===========================BURGER MENU=======================*/
#burger-menu {
          position: fixed;
	      
	      width: 2em;
          height:3em;
	
          /* this line centres it vertically in the top bar */
          top: calc(clamp(100px, 15vh, 350px) / 2 - 1.5em);
	
          background-color: transparent;
          z-index:999999;
          
          -webkit-transform: rotate(0deg);
          -moz-transform: rotate(0deg);
          -o-transform: rotate(0deg);
          transform: rotate(0deg);
          -webkit-transition: .5s ease-in-out;
          -moz-transition: .5s ease-in-out;
          -o-transition: .5s ease-in-out;
          transition: .5s ease-in-out;
          cursor: pointer;
        
          right: 6.25vw;
	     
}

#burger-menu span {
              display: block;
              position: absolute;
              height: 2px;
              width: 100%;
              background: #ffffff;
              opacity: 1;
              left: 0;
              -webkit-transform: rotate(0deg);
              -moz-transform: rotate(0deg);
              -o-transform: rotate(0deg);
              transform: rotate(0deg);
              -webkit-transition: .25s ease-in-out;
              -moz-transition: .25s ease-in-out;
              -o-transition: .25s ease-in-out;
              transition: .25s ease-in-out;
 
 }

#burger-menu:focus {
  outline: none; 
  }

#burger-menu:hover span:first-child {
  width: 40px; 
  }

#burger-menu:hover span:last-child {
  width: 20px; 
  }


#burger-menu span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#burger-menu span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}


#burger-menu.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 4px;
  width: 30px;
}


#burger-menu.open span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px;
  left: 4px;
  width: 30px;
}

#burger-menu.open span {
    background: #EFEDE7; /* Change to white */
}

/*=========================END BURGER MENU=====================*/



/*=========================OVERLAY MENU=====================*/

 li a:hover,
 li a:focus {
  color: #B1E2DF; }


.overlay-menu-background {
    width: 100%;
    height: 100%;
    background-color: #1D1D1B;
    position: fixed;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s, visibility 0s 1s;
    color: #EFEDE7;
	font-family: "clarendon-text-pro", serif;
	font-size: 5rem;
	
	 display: flex;
  justify-content: center; /* horizontal centre */
  align-items: center;     /* vertical centre */
}

.overlay-menu-background.active {
  visibility:visible;
    opacity: 1;
  transition: opacity 1s;
  }
  


.menu-options {
    list-style-type: none;
    padding: 0;
}

.menu-options li {
    margin-bottom: 1.5rem;
}

.menu-options a {
    text-decoration: none;
    color: #EFEDE7;
    font-size: clamp(3rem, 4vw, 5rem);
	font-family: "clarendon-text-pro", serif;
    font-weight: bold;
}



.overlay-menu-background * {
    color: #EFEDE7; /* Ensure text is white */
}


   

  
  /* prevent page from scrolling when the menu is open */
  .fixed-position {
    overflow: hidden;
 }
  
/*=========================END OVERLAY MENU=====================*/


/*=========================TOP LOGO BAR===================*/
.toplogo {  
          margin: 0;       
  		  position: relative; 
          display: flex;
          align-items: left;
          justify-content:flex-start;
            }


.toplogo img {
            height: clamp(80px, 8vw, 150px);
  display: block;
            }
            
            
 


/*=========================END TOP LOGO BAR==================*/





/*=========================HOME HERO==================*/
.home-hero-image {
    position: relative; 
	display:block;
    grid-column: 1 / span 16;
    grid-row: 1 / span 1;
 
	background-image: url("../images/mixing2.png");
    background-size: cover;
    z-index:0;
    margin:0;
    padding:0;
    background-repeat:no-repeat;
    background-position: 50% center;
    width:100vw;
    min-height:100vh;
    box-sizing: border-box;
    overflow: hidden;
 
}

 
    
.home-hero-image::after { /* darkened overlay */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); 
    z-index: 10; /* Overlay is above the image but below the content */
}

.home-hero-image img {
	width: 40vw;
}

/* Ensure text or elements on top of the hero image are above the overlay */
.home-hero-text {
    position: absolute;       /* position relative to .home-hero-image */
    left: 50%;            /* distance from right */
    top: 50%;           /* distance from bottom */
    z-index: 20;              /* above overlay */
    color: #46C1C1;
    text-align: center;
    line-height: 0.5;
    font-family: "clarendon-text-pro", serif;
    font-weight: 200;
    transform: translate(-50%, -50%);
    font-size: clamp(1rem, 2.5vw, 3rem);  
    line-height: 1.1;                   /* stop strangling the text */
	z-index: 20; /* above the dark overlay (::after is 10) */
}


.book-now-button {
    position: absolute;
    bottom: 6.25vw;
    right: 6.25vw;
    z-index: 20; /* above the dark overlay (::after is 10) */
	display: inline-block;   
}

.book-now-button img {
    display: block;
    max-width: clamp(100px, 10vw, 180px);
    height: auto;
}
/*=========================END HOME HERO==================*/



/*=========================ABOUT==================*/
.section-about {
	 grid-column: 1 / span 16;
    width: 100%;
    padding-top:6.25vw;
	padding-right:6.25vw;
	padding-bottom:6.25vw;
    display: flex;
    flex-wrap: wrap;
    position: relative;
	background: #dad3cc;
}

/* LEFT COLUMN */
.col-left,
.col-right {
    width: 50%;
    position: relative;
}

.col-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT COLUMN TYPOGRAPHY */
.col-right {
    padding-left: 4vw;
    padding-right: 2vw;
	position: relative; 
    z-index: 0;           /* new: baseline for children */
}

.col-right h2 {
    font-family: "clarendon-text-pro", serif;
    font-weight: 300;
    font-size: clamp(2.8rem, 4vw, 5rem);
    color: #46C1C1;
    margin: 0 0 1.5rem 0;
}

.col-right .intro {
    font-family: "clarendon-text-pro", serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    margin-bottom: 2rem;
}

.col-right .body {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    line-height: 1.4;
    margin-bottom: 3rem;
}

/* CORAL CIRCLE UNDERLAY */
.circle-underlay {
    position: absolute;
    right: 0;
    
    /* vertical placement – tweak this to taste */
    bottom: 10rem;        /* raises it up under the paragraph */
    /* try bottom: 2.5rem; if you want it higher, 0.5rem if you want it lower */

    width: clamp(120px, 18vw, 260px);
    z-index: -1;           /* sits behind all text in .col-right */
    pointer-events: none;
}

.circle-underlay img {
    width: 100%;
    height: auto;
    display: block;
}

/* READ MORE */
.read-more {
    display: inline-block;   
    margin-top: 1rem;        /* spacing belongs on the link, not the image */
    cursor: pointer;         /* make absolutely sure it shows as a link */
}

.read-more img {
  max-width: clamp(120px, 18vw, 220px);
    height: auto;
    display: block;          /* removes any inline gap inside the link */
}
/*=========================END ABOUT==================*/


/*=========================WHO IT'S FOR==================*/
.section-for {
    grid-column: 1 / span 16;         /* full width in the grid */
    padding: 6.25vw;                   /* 6.25vw on all sides as requested */
    display: flex;
    flex-wrap: wrap;
    position: relative;
	background: #60362C;
	color: #ffffff;
}

/* columns */
.section-for .col-left,
.section-for .col-right {
    width: 50%;
    position: relative;
}

/* left text column */
.section-for .col-left {
    padding-right: 4vw;
}

/* heading */
.section-for h2 {
    font-family: "clarendon-text-pro", serif;
    font-weight: 500;
    font-size: clamp(2.4rem, 3.6vw, 4.2rem);
    color: #F0514E;
    margin: 0 0 1.5rem 0;
}

/* subtitle */
.section-for .subtitle {
    font-family: "clarendon-text-pro", serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    margin: 0 0 1.5rem 0;
}

/* body copy */
.section-for .body {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    line-height: 1.5;
    margin: 0 0 2.5rem 0;
}



/* right image column */
.section-for .col-right {
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-for .image-wrapper {
    position: relative;
    width: 100%;
}

.mixing-image {
    width: 100%;
    height: auto;
    display: block;
}


/*=========================END WHO IT'S FOR==================*/

/*========================= SCROLLING STRIP ==================*/

.section-scroll {
    grid-column: 1 / span 16;        /* full width in THE grid */
    background-color: #486D86;
    padding: 1vw 0;               /* top + bottom padding around the strip */
    overflow: hidden;                /* hides overflow for smooth scrolling */
}

.scroll-strip {
    width: 200%;                     /* gives room for continuous movement */
    height: clamp(30px, 7vw, 120px); /* adjust height to match your asset */
    background-image: url('../images/nextmixer.png');
    background-repeat: repeat-x;
    background-size: auto 100%;      /* tile horizontally, match height */
    animation: scrollMarquee 18s linear infinite;
}

/* KEYFRAMES */
@keyframes scrollMarquee {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -100% 0;
    }
}

/*========================= NEXT EVENT / CORK HERO ==================*/

.section-next {
    grid-column: 1 / span 16;              /* full width in the grid */
    background-image: url("../images/cork.jpeg");
    background-size: cover;
    background-position: 50% center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    position: relative;
    color: #1D1D1B;
}

.next-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
	
}


/* COLUMNS */
.next-left,
.next-right {
    width: 50%;
    box-sizing: border-box;
}

/* LEFT COLUMN: TWO STACKED IMAGES WITH 6.25VW GAP */
.next-left {
    padding: 6.25vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;   /* image sits towards the bottom, but above padding */
    box-sizing: border-box;      /* padding included in that height */
}



.next-left-image {
    display: block;
    max-width: 100%;
    max-height: 100%;            /* never taller than the content box */
    width: auto;                 /* let width follow height constraint */
    height: auto;
    object-fit: contain;         /* scale down to fit without cropping */
    align-self: flex-start;        /* hug the right  */
}

/* RIGHT COLUMN: WHITE CARD BOTTOM-RIGHT WITH 6.25VW RIGHT + BOTTOM PADDING */
.next-right {
    display: flex;
    justify-content: flex-start;   /* LEFT not right */
    align-items: flex-start;       /* top */
    padding-left: 0;          /* left padding for breathing space */
    padding-right: 0;              /* remove right padding */
    padding-top: 0;
    padding-bottom: 0;
}

/* WHITE CARD */
.next-card {
    background-color: #ffffff;
    padding: 6.25vw;
    margin-right:6.25vw;
    width: 100%;
    box-sizing: border-box;
}

.next-card-contents {
	margin-left:auto;
	margin-right:auto;
	width: max-content;
}

/* TYPOGRAPHY */
.next-title {
    font-family: "clarendon-text-pro", serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 3.4vw, 3.8rem);
    color: #f0514e; /* pink  */
	width: max-content;
}

.next-label {
    font-family: Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(0.8rem, 1vw, 1rem);
    margin: 0 0 0.25rem 0;
    width: max-content;
}

.next-text {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(0.8rem, 1vw, 1rem);
    margin: 0 0 1.25rem 0;
	width: max-content;
}

/* SPEAKERS */
.speaker-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.speaker-image {
    width: 5vw;
    height: 5vw;
    object-fit: cover;
    display: block;
}

.speaker-copy {
    flex: 1;
}

.speaker-name {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

.speaker-talk {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    margin: 0;
}

/* BOOK NOW BUTTON AT BOTTOM OF CARD */
.book-now-inline {
     display: block;
    margin: 2rem auto 0 auto; /* top | left/right | bottom */
    cursor: pointer;
    text-align: center;       /* ensures child img centres properly */
}

.book-now-inline img {
    display: block;
    max-width: clamp(100px, 10vw, 180px);
    height: auto;
}

/*========================= FOOTER / CONTACT ==================*/
.section-footer {
    grid-column: 1 / span 16;
    background-color: #E4CDD8;
    width: 100%;
    margin: 0;
    color: #1D1D1B;
}

.footer-inner {
    padding-right: 6.25vw;
	padding-top: 6.25vw;
	padding-bottom: 6.25vw;
	padding-left:0;
    display: flex;
    flex-direction: column;
    gap: 3vw;              /* space between top and bottom rows */
}

/* ROWS */

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-row-top {
    /* extra space below the top row if you want it */
}

.footer-row-bottom {
    align-items: flex-end;
}

/* COLUMNS */

.footer-col {
    box-sizing: border-box;
}

.footer-col-left,
.footer-col-right {
    width: 50%;
}

.footer-col-right {
	padding-left:6.25vw;
}

/* LEFT SIDE IMAGES */

.footer-phone {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.footer-logo {
    display: block;
    max-width: 200px;
    height: auto;
	margin-left: 6.25vw;
}

/* RIGHT SIDE TEXT */

.footer-title {
    font-family: "clarendon-text-pro", serif;
    font-weight: 500;
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin: 0 0 1rem 0;
    color: #1D1D1B;
}

.footer-intro {
    font-family: "clarendon-text-pro", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    margin: 0 0 1.5rem 0;
}

.footer-email {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    margin: 0;
}

.footer-email a {
    color: #1D1D1B;
    text-decoration: none;
}

.footer-email a:hover {
    text-decoration: none;
    color: #9F9F9F;
}

/* FOLLOW + SOCIAL */

.footer-follow {
    margin-top: 2rem;
}

.footer-follow-label {
    font-family: "clarendon-text-pro", serif;
    font-weight: 500;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    margin: 0 0 0.5rem 0;
}

.footer-social-icons {
    display: flex;
    gap: 2.5rem;
    justify-content: flex-start;
    margin-bottom: 0.75rem;
}



#instagram {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;

  background: url("../images/instagram.svg") no-repeat center/contain;
  background-size: contain;        /* or 100% 100%; locks scaling */
  transition: none;                /* optional: remove image fade to stop flicker */
}

#linkedin {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;

  background: url("../images/linkedin.svg") no-repeat center/contain;
  background-size: contain;        /* or 100% 100%; locks scaling */
  transition: none;                /* optional: remove image fade to stop flicker */
}

/* Hover swap (as before) */
#instagram:hover {
    background-image: url("../images/instagram_hover.svg");
}
#linkedin:hover {
    background-image: url("../images/linkedin_hover.svg");
}

/* COPYRIGHT BOTTOM RIGHT */

.footer-copy {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    text-align: right;
    margin: 0;
	padding-bottom:0.5vw;
}

/*=========================MOBILE STYLES=====================*/

@media (max-width: 768px) {

  /* Global tweaks */
  body {
    font-size: 14px; /* keeps copy readable on phones */
  }

  

  /* HERO */
  .home-hero-image {
    background-position: 50% center;
  }

  .home-hero-text {
    font-size: clamp(1rem, 2.2vw, 3rem);
   
  }
	


  .home-hero-text p {
    white-space: nowrap;         /* do not allow wrapping */
  }




  .book-now-button {
    bottom: 8vw;
    right: 8vw;
  }

  /* mobile BURGER + OVERLAY MENU – less shouty on mobile */
  #burger-menu {
    right: 6vw;
    top: 24px;
  }

  .menu-options a {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  /* ========== mobile ABOUT SECTION ========== */

  .section-about {
    padding: 8vw 6vw;
    flex-direction: column;
  }

  .section-about .col-left,
  .section-about .col-right {
    width: 100%;
  }

  .section-about .col-left {
    margin-bottom: 6vw;
  }

  .section-about .col-right {
    padding-left: 0;
    padding-right: 0;
  }

  .section-about .col-right h2 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .section-about .col-right .intro,
  .section-about .col-right .body {
    font-size: 1rem;
  }

  /* keep the circle but stop it drifting off-screen */
  .circle-underlay {
    position: absolute;
    right: -4vw;
    bottom: 7rem;
    width: clamp(120px, 40vw, 220px);
  }

  /* ========== mobile WHO IT’S FOR SECTION ========== */

  .section-for {
    padding: 8vw 6vw;
    flex-direction: column;
  }

  .section-for .col-left,
  .section-for .col-right {
    width: 100%;
  }

  .section-for .col-left {
    padding-right: 0;
    margin-bottom: 6vw;
  }

  .section-for h2 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .section-for .subtitle,
  .section-for .body {
    font-size: 1rem;
  }

  .section-for .image-wrapper {
    width: 100%;
  }

  .mixing-image {
    width: 100%;
    height: auto;
  }

  /* ========== mobile SCROLL STRIP ========== */

  .section-scroll {
    padding: 3vw 0;
  }

  .scroll-strip {
    height: clamp(32px, 10vw, 72px);
  }

  /* ========== mobile NEXT EVENT / CORK SECTION ========== */

  .section-next {
    height: auto;        /* ditch fixed 100vh on mobile */
    width: 100vw;
  }

  .next-inner {
    flex-direction: column;
	  height: auto;
  }

  .next-left,
  .next-right {
    width: 100%;
  }

  .next-left {
    padding: 6.25vw 6.25vw 0 6.25vw;
    justify-content: flex-start;
  }
	
	.next-left-image {
      width: 100%;
      height: auto;
      display: block;
  }

  .next-right {
    padding: 0;
    justify-content: flex-start;
    align-items: stretch;
  }

  .next-card {
    margin: auto;
	  width:100%;
    padding: 6vw;
  }

  .next-title {
    font-size: clamp(2rem, 7vw, 2.4rem);
  }

  .next-label,
  .next-text {
    font-size: 0.95rem;
  }

  .speaker-row {
    gap: 1rem;
  }

  /* 5vw is tiny on a phone – use fixed px */
  .speaker-image {
    width: 56px;
    height: 56px;
  }

  .speaker-name {
    font-size: 0.95rem;
  }

  .speaker-talk {
    font-size: 0.9rem;
  }

  .book-now-inline img {
    max-width: 60vw;
  }

  /* ========== mobile FOOTER / CONTACT ========== */

   .footer-inner {
        padding: 8vw 6vw;
        gap: 6vw;
    }

    .footer-row-top {
        flex-direction: column;
        gap: 3vw;
    }

	.footer-col-left, .footer-col-right {
		 width: 100%;
	}

    .footer-phone {
        width: 100%;
    }

    .footer-logo {
        margin-top: 1rem;
	
    }

    

    .footer-follow {
        margin-top: 1.5rem;
    }

    .footer-social-icons {
        justify-content: flex-start;
        gap: 1.5rem;
    }

}

/*=========================END MOBILE STYLES=====================*/
