/* universal styling start */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Montserrat", Sans-serif;
}


:root {
  --primary-color: #c72910;
  --secondary-color: #1e1e1e;
  --text-color: #fff;
  --background-color: #FFF6E0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
    padding: 0;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

a {
    display: inline-block;
}
/*a:visited{*/
/*    color: var(--text-color);*/
/*}*/
button {
    border: none;
    background: transparent;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}
section:nth-child(odd) {
    background-color: var(--background-color);
}
button {
    cursor: pointer;
}

ul,
ol,
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

img {
    height: auto;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1280px;
}

h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4em;
    color: var(--primary-color);
    font-family: 'AmsiPro';
    margin-bottom: 20px;
    text-transform: uppercase;
}

h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.4em;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'AmsiPro';
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #1e1e1e;
    line-height: 1.4em;
    margin-bottom: 20px;
}


/* universal styling end */


/* header */
header a.custom-logo-link {
    max-width: 150px;
    width: 100%;
}
header {
    padding: 5px 0;
    background-color: #00000061;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1730px;
}

header .logo img {
    max-width: 120px;
    width: 100%;
}

header ul {
    display: flex;
    gap: 25px;
}

header li a {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
}

.btn {
    font-size: 19px;
    font-weight: 600;
    line-height: 25px;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    padding: 15px 10px;
    border-radius: 10px;
    transition: all0.3s ease-in-out;
}
.btn i{
    margin-left: 05px;
}
.btn svg{
    margin-left: 5px;
}

.btn:hover {
    transform: scale(1.04);
    transition: all 0.3s ease-in-out;
}

header .right-column {
    display: flex;
    gap: 20px;
}

header .right-column .btn{
        color:var(--text-color)!important;
    }

.button {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

header .navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin-bottom: 5px;
    display: block;
    border-radius: 50px;
}

header .navbar-toggle :last-child {
    margin-bottom: 0;
}

header .navbar-toggle {
    display: none;
}


/* header end */


/* banner */

.banner {
    background-image: url(https://oreganopizzeria.digizee.co.uk/wp-content/uploads/2026/04/1612767155-pizza-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 200px 0 100px 0;
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
}

.banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e1ea8;
    z-index: -1;
}

.banner .container {
    max-width: 1100px;
}

.banner .sub-heading span {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #fff;
}

.banner .sub-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    max-width: 30%;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
}

.banner .sub-heading::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 100%;
    max-width: 30%;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
}

.banner .sub-heading {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

 h1 {
    font-size: 45px;
    font-weight: 900;
    line-height: 58px;
    color: #fff;
    font-family: 'AmsiPro';
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner p {
    color: #fff;
    margin-bottom: 20px;
}

.banner .btn-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.banner .btn-box .btn{
    color:var(--text-color);
}

.banner .btn-box .btn {
    padding: 15px 25px;
}


/* banner end */


/* about-us */

.about-us {
    padding: 80px 0;
}

.about-us h2 {
    position: relative;
    padding-bottom: 20px;
}

.about-us h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 300px;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.about-us .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.about-us .right-column img {
    width: 100%;
}

.about-us .left-column {
    max-width: 49%;
    width: 100%;
}
    .about-us .left-column ul{
            display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 20px;
         list-style-position: inside;
         flex-direction: column;
    }
    
    .about-us .left-column ul li::marker{
        color: var(--primary-color);
    }
    .about-us .left-column ul li{
            max-width: 100%;
        width: 100%;
        list-style-type:disc ;
    }
.about-us .right-column {
    position: relative;
    max-width: 49%;
    width: 100%;
    padding: 20px;
}

.about-us .right-column::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    border-left: 4px solid;
    border-top: 4px solid;
    border-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color)) 1;
    z-index: 0;
    transition: all 0.3s ease-in-out;
}

.about-us .right-column::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    border-right: 4px solid;
    border-bottom: 4px solid;
    border-image: linear-gradient(to top, var(--primary-color), var(--secondary-color)) 1;
    z-index: 0;
    transition: all 0.3s ease-in-out;
}
.about-us.events .event-borders{
    position: relative;
    padding: 0;
    z-index: 1;
}
.about-us.events .event-borders::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid;
    border-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color)) 1;
    top: 10px;
    left: -20px!important;
    z-index: 0;
    left: unset;
    z-index: -1;
    
}
.about-us.events .event-borders::after {
    display: none;
}
.bttn {
    font-size: 19px;
    font-weight: 600;
    line-height: 25px;
    color: var(--primary-color);
    background-color: transparent;
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.about-us .btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}


/* about-us end */


/* featured */

.featured {
    padding: 80px 0;
}

.featured .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.featured .right-column {
    max-width: 48%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured .right-column .content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.featured .right-column .content .inner-img {
    max-width: 47%;
    width: 100%;
}

.featured .right-column .content .inner-img img {
    width: 100%;
    border-radius: 25px;
}

.featured .right-column .content .inner-content {
    max-width: 58%;
    width: 100%;
}

.featured .left-column {
    background-image: url(https://oreganopizzeria.digizee.co.uk/wp-content/uploads/2026/04/1612870193-pizza4.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 15px;
    text-align: center;
    max-width: 49%;
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured .right-column .center-content h3 {
    text-align: end;
}

.featured .right-column .center-content p {
    text-align: end;
}

.featured .left-column::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e1ea8;
    z-index: -1;
    border-radius: 25px;
}

.featured .left-column h2 {
    color: #ffffff;
}

.featured .left-column p {
    color: #ffffff;
}

.featured .left-column .button {
    padding: 15px 25px;
    display: flex;
    max-width: 177px;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
    justify-content: center;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    border-color:var(--primary-color);
}

.featured .left-column .button:hover {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}


/* footer */

footer .footer-top {
    padding: 100px 0;
    background-color: var(--background-color);
}

footer .footer-top .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

footer .logo img {
    max-width: 180px;
    width: 100%;
    margin-bottom: 10px;
}

footer .left-column {
    max-width: 400px;
    width: 100%;
}
footer .links a:hover {
    color: var(--background-color);
}
footer .links a {
    font-size: 25px;
    color: var(--primary-color);
    padding: 5px;
    background-color: var(--secondary-color);
    border-radius: 10%;
    max-width: 50px;
    width: 100%;
    text-align: center;
}

footer .right-column {
    max-width: 250px;
    width: 100%;
}

footer li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    color: #1e1e1e;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

footer li i {
    color: var(--primary-color);
}
footer li svg {
    color: var(--primary-color);
    margin-top: 2px;
}



footer li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    color: #1e1e1e;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

footer .footer-bottom {
    background-color: var(--primary-color);
    text-align: center;
    padding: 20px 0;
}

footer .footer-bottom p {
    color: #fff;
    margin-bottom: 0;
}


/* footer end  */
/* Whats on starts here */
.whatson{
    /*background-color: var(--background-color);*/
    padding: 80px 0;
}
.whatson .slider-whatson div {
    text-align: center;
    padding: 10px 0;
    margin: 5px;
    border-radius: 10px;
}

.slider-whatson div img {
    width: 100%;
    border-radius: 10px;
}
.whatson .btn{
    color: #ffffff;
}


/* Whats on Ends here */
/* about-event starts here */

.about-us.events .about-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

 .about-us.events .about-box .right-col {
        color:var(--secondary-color);
} 
.about-us.events .about-box .left-col {
    font-size: 50px;
    line-height: 1.1em;
    color: var(--primary-color);
    width: auto;
}
.about-us.events .event-borders img{
    object-fit: cover;
}

/* about-event ends here */
/* Menu Highlights Start here */

.menu-highlights {
    padding: 80px 0;
}

 span.sub-heading {
    word-spacing: 2px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.menu-highlights h2 span {
    color: var(--secondary-color);
    display: block;
}

.menu-highlights .container.col-1 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.menu-highlights .container.col-1 .right-col a{
    color: #ffffff;
}

.menu-highlights .container .highlight-col {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    flex-wrap: wrap;
}

.menu-highlights .container .highlight-col .box {
    max-width: 32%;
    width: 100%;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    border:1px solid #2c2c2c1f;
    background-color: #ffffff!important;
    transition: all 0.3s ease-in-out;
    text-align: left;
    
}

.menu-highlights .highlight-col .box .image-box {
    width: 100%;
    height: 250px;
    margin: 0 auto;
    background-color:var(--primary-color);
    position: relative;
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.menu-highlights .highlight-col .image-box span {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    font-weight: 400;
    padding: 8px;
    background-color: var(--primary-color);
    border-radius: 10px;
    line-height: 1em;
    color: #ffffff;
    text-transform: uppercase;
}

.menu-highlights .highlight-col .content-box {
    margin-top: 10px;
}
.menu-highlights .highlight-col .content-box a{
    color: var(--primary-color);
    font-weight: 700;
}

/* Menu Highlights Ends here */
/* comment start */
.gallery-banner .sub-heading {
  margin: 0 auto 20px auto;
  max-width: 400px;
}
.gallery {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.gallery .btn {
  display: flex;
  max-width: 160px;
  margin: 0 auto;
  align-items: center;
}

.gallery-item {
  width: 100%;
  cursor: pointer;
  height: 100%;
  object-fit: cover;
}

.gallery .gallery-img {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.gallery .gallery-img:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #0000004d;
  z-index: 0;
  cursor: pointer;
}

/* POPUP */
.gallery-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: var(--background-color);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.gallery-popup.active {
  display: flex;
}

.gallery .swiper-slide img {
  height: 100%;
  object-fit: cover;
}

.gallery .swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 14px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #fff;
  background-color: #000;
  padding: 7px 9px;
  border-radius: 100%;
}

/* IMAGE STYLE */
.gallery .swiper {
  width: 50%;
  height: 80%;
}

.gallery .swiper-slide img {
  width: 100%;
  border-radius: 10px;
}

/* CLOSE BUTTON */
.gallery .close-btn {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 35px;
  color: var(--secondary-color);
  cursor: pointer;
}

.gallery h2 {
  text-align: center;
}

/* contact-us */

.contact-us {
  padding: 80px 0;
}

.contact-us .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.banner.hero .buttons .btn{
    color:var(--text-color);
}

.contact-us .buttons {
  justify-content: left;
}
.contact-us .buttons .btn {
    color:var(--text-color);
}
.contact-us h2 {
  text-align: center;
}

.contact-us .left-column {
  max-width: 49%;
  width: 100%;
}

.contact-us .right-column {
  max-width: 49%;
  width: 100%;
  position: relative;
  padding: 20px;
}

.contact-us .right-column img {
  width: 100%;
}

.enquiries .left-column img {
  width: 100%;
}

.contact-us p a {
  color: #1e1e1e;
}

.contact-us li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #1e1e1e;
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-us li a i {
  color: var(--primary-color);
}

.contact-us li i {
  color: var(--primary-color);
}

.contact-us li {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #1e1e1e;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-us .right-column::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  border-left: 4px solid;
  border-top: 4px solid;
  border-image: linear-gradient(
      to bottom,
      var(--primary-color),
      var(--secondary-color)
    )
    1;
  z-index: 0;
  transition: all 0.3s ease-in-out;
}

.contact-us .right-column::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  border-right: 4px solid;
  border-bottom: 4px solid;
  border-image: linear-gradient(
      to top,
      var(--primary-color),
      var(--secondary-color)
    )
    1;
  z-index: 0;
  transition: all 0.3s ease-in-out;
}

.enquiries .content {
  flex-direction: row-reverse;
}

.hero {
  height: 80vh;
    background-image: url(https://oreganopizzeria.digizee.co.uk/wp-content/uploads/2026/04/1611478062-slider-pizza.jpg);
}
/*menu starts here*/
.slider-menu .slick-slide img{
    max-width: 100%;
    width:100%;
}
.slider-menu .slick-slide {
    padding: 0 10px; /* space between slides */
}
.slider-menu .slick-prev:before, .slick-next:before{
    color:var(--secondary-color);
}
/*menu ends here*/
/* responsiveness */

@media screen and (max-width: 1025px) {
    .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .gallery {
    padding: 40px 0;
  }

  .contact-us {
    padding: 40px 0;
  }
    header ul {
        gap: 15px;
    }
    header .btn {
        font-size: 15px;
        line-height: 21px;
    }
    header .right-column {
        gap: 10px;
    }
    
    
    
    h1 {
        font-size: 35px !important;
        line-height: 41px !important;
    }
    .btn {
        font-size: 16px;
        line-height: 22px;
    }
    .banner .btn-box .btn {
        padding: 15px 20px;
    }
    p {
        font-size: 16px;
        line-height: 22px;
    }
    .about-us .left-column {
        max-width: 44%;
    }
    

    
    .about-us .right-column {
        max-width: 54%;
    }
    .about-us .btn {
        font-size: 16px;
        line-height: 22px;
        padding: 15px 20px;
    }
    .about-us {
        padding: 40px 0;
    }
    footer .footer-top {
        padding: 40px 0;
    }
    footer .footer-top .container {
        flex-wrap: wrap;
    }
    .featured .container {
        flex-direction: column;
    }
    .featured .left-column {
        max-width: 100%;
    }
    .featured .right-column {
        max-width: 100%;
    }
    .featured {
        padding: 40px 0;
    }
}

@media screen and (max-width: 768px) {
    .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .gallery .swiper {
    width: 80%;
    height: 80%;
  }

  .gallery .close-btn {
    top: 10px;
    right: 10px;
  }

  .contact-us .content {
    flex-direction: column-reverse;
  }

  .enquiries .content {
    flex-direction: column;
  }

  .contact-us .left-column {
    max-width: 100%;
  }

  .contact-us .right-column {
    max-width: 100%;
  }
    header a.custom-logo-link {

        max-width: 100px;
    }
    .menu-highlights,
    .whatson{
        padding: 40px 0;
    }
    .menu-highlights .container .highlight-col{
        flex-direction: column;
    }
    .menu-highlights .container .highlight-col .box{
        max-width: 100%;
    }
    header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 15px 0;
        background-color: var(--primary-color);
        z-index: 999;
        max-width: 100% !important;
    }
    .navbar-toggle.active span:first-child {
        transform: rotate(134deg) translate(7px);
        margin-bottom: 0;
        width: 29px;
    }
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(47deg) translate(-8px);
        margin-bottom: 0;
        width: 29px;
    }
    header .navbar-toggle {
        display: block;
    }
    header nav ul {
        display: flex;
        flex-direction: column;
        gap: 21px;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    header .right-column {
        display: none;
    }
    .banner .sub-heading::before {
        display: none;
    }
    .banner .sub-heading::after {
        display: none;
    }
    .about-us.events .container{
        flex-direction: column;
    }
    .about-us.events .event-borders::before{
        left: -10px!important;
    }
    .about-us .container {
        flex-direction: column-reverse;
    }
    .about-us .right-column {
        max-width: 85%;
    }
    .about-us .left-column {
        max-width: 100%;
    }
    footer .left-column {
        max-width: 100%;
    }
    footer .right-column {
        max-width: 100%;
    }
    h2 {
        font-size: 26px;
        line-height: 32px;
    }
    .banner {
        height: inherit;
    }
    .featured .left-column {
        padding: 50px 15px;
    }
    .featured .left-column .button {
        max-width: 164px;
    }
}

@media screen and (max-width: 520px) {
    .contact-us .buttons .btn {
        text-align: center!important;
    }
    .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
    .about-us .left-column ul li {
        max-width: 100%;
        
    }
    .banner {
     padding: 160px 0 40px 0;   
    }
    .banner .sub-heading span {
        font-size: 16px;
        line-height: 22px;
    }
    h1 {
        font-size: 30px !important;
        line-height: 36px !important;
    }
    p {
        font-size: 15px;
        line-height: 21px;
    }
    .btn {
        width: 100%;
    }
    footer .logo img {
        max-width: 115px;
    }
    footer .footer-bottom {
        padding: 10px 0;
    }
    footer li {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 15px;
    }
    h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .about-us h2::after {
        max-width: 211px;
    }
    .about-us .right-column {
        max-width: 100%;
        padding: 10px;
    }
    footer li a {
        font-size: 16px;
        line-height: 22px;
    }
    header .logo img {
        max-width: 100px;
    }
    .about-us .btn {
        max-width: 182px;
    }
    .featured .right-column .content {
        flex-direction: column;
    }
    .featured .right-column .content .inner-img {
        max-width: 100%;
    }
    .featured .right-column .content .inner-content {
        max-width: 100%;
    }
    .featured .right-column .center-content {
        flex-direction: column-reverse;
    }
    .featured .right-column .center-content h3 {
        text-align: left;
    }
    .featured .right-column .center-content p {
        text-align: left;
    }
    .featured .left-column {
        padding: 30px 10px;
    }
}