/* Reset CSS */
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

:root {
  --heading-regular: 'minion-pro', serif;
  --heading-bold: 'minion-pro', serif;
  --body-regular: 'Maven Pro', sans-serif;
  --body-bold: 'Maven Pro', sans-serif;
  --dark-blue: #313e5f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-regular);
  font-weight: 400;
  font-style: normal;
}

.bold-heading {
  font-family: var(--heading-bold);
  font-weight: 700;
  font-style: normal;
}

.maven-pro-regular {
  font-family: 'Maven Pro', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.maven-pro-bold {
  font-family: 'Maven Pro', sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-regular);
  overflow-x: hidden;
  background-color: #f5f5f5;
}

.navbar {
  width: 100%;
  height: 28rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.navbar {
  position: relative;
  background-color: #ffffff; 
  overflow: hidden; 
}

.burger-menu {
  display: none; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  width: 40px;
  height: 33px; 
  margin-right: 20px;
  cursor: pointer;
}

.line {
  width: 100%;
  height: 5px; 
  background-color: var(--dark-blue);
  border-radius: 5px;
  margin: 4px 0; 
}

.navbar-links {
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: flex; 
  gap: 40px; 
 align-items: center;
}

.navbar-links li {
  display: inline;
}

.navbar-links a {
  text-decoration: none;
  font-family: var(--body-regular); 
  font-size: 1.5rem;
  color: var(--dark-blue);
  transition: color 0.3s ease; 
}

.navbar-links .last-nav-link a  {
  font-size: 1rem; 
}


.navbar-links a:hover {
  color: #000; 
	  text-decoration: none;
}

.navbar-logo {
  width: 25rem; 
  height: auto; 
  margin-bottom: 2rem;
}

@media (max-width: 800px) {
  .navbar-links {
    display: none; 
    position: fixed; 
    right: 0; 
    top: 0;
    width: 100%;
    height: 100%; 
    background-image: url('assets/footerbackground.jpg'); 
    background-size: cover; 
    background-position: center; 
    z-index: 10; 
    transition: transform 0.3s ease; 
    transform: translateX(100%); 
    flex-direction: column; 
    justify-content: center;
    align-items: center; 
    animation: slide-background 100s linear infinite; 
  }

	.footer-links {
		display: grid !important;
	}	

  .navbar {
    height: 22rem;
  }

  .navbar-logo {
    margin-bottom: 0;
  }

  @keyframes slide-background {
    0% {
      background-position: 0% 0%; 
    }
    100% {
      background-position: 100% 0%; 
    }
  }

  .navbar-links.active {
    transform: translateX(0);
  }

  .navbar-overlay {
    position: absolute; 
    top: 0; 
    right: 0; 
    bottom: 0;
    left: 0; 
    background-color: rgba(49, 62, 95, 0.742);
    z-index: -1; 
  }

  .burger-menu {
    display: flex; 
  }
}

.close-menu {
  font-size: 2rem; 
  color: white; 
  position: absolute; 
  top: 20px;
  right: 20px; 
  cursor: pointer; 
  z-index: 11; 
}

.navbar-links.active a {
  color: white; 
}

.navbar-title {
  font-family: var(--heading-regular);
  font-size: 40px;
  color: var(--dark-blue);
  margin: 0;
}

.navbar-links {
  list-style: none;
  padding: 0;

  display: flex;
  gap: 40px;
  font-weight: 600;
}

.navbar-links li {
  display: inline;
}

.navbar-links a {
  text-decoration: none;
  font-family: var(--body-regular);
  font-size: 1.5rem;
  color: var(--dark-blue);
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: #000;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.splide {
  width: 100%;
  margin: 0;
  display: block;
}

.splide__track {
  overflow: hidden;
  height: 35rem;
}

.splide__list {
  display: flex;
  height: 100%;
  gap: 20px;
}

.large-slide {
  flex: 1;
  height: 100%;
  margin-right: 20px;
}

.half-slide {
  flex: 1;
  height: 100%;
  margin-right: 20px;
}

.stacked-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  gap: 20px;
}

.stacked-container .overlay {
  padding: 20px;
}
.stacked-container h2 {
  font-size: 1.2rem;
  line-height: 1;
}

.stacked-container p {
  font-size: 1rem;
	
}

.stacked-slide {
  flex: 1;
}

.stacked-slide img {
	max-height: 16.5rem;
}

.stacked-slide img,
.large-slide img,
.half-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.overlay {
  position: absolute;
  bottom: 0; 
  left: 0;
  right: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1.813),
    rgba(0, 0, 0, 0)
  );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: flex-start;
  padding: 1rem; 
  opacity: 1; 
}

.large-slide,
.half-slide,
.stacked-slide {
  position: relative;
}

.slide-title {
  font-size: 1.5rem;
  margin: 0;
}

.slide-description {
  font-size: 1rem;
  margin: 5px 0; 
  text-align: left; 
}

.view-print {
  font-weight: 300;
  color: white;
  text-decoration: underline;
  opacity: 0; 
  transition: opacity 0.3s ease; 
}

.welcome-section {
  text-align: center;
  margin: 1rem;
  padding: 2rem;
}

.welcome-title {
  font-size: 3rem;
  margin: 0;
}

.thin-line {
  width: 80px;
  height: 2px;
  background-color: var(--dark-blue);
  margin: 24px auto;
  margin-bottom: 4rem;
}

.subheading {
  font-size: 1.5rem;
  margin: 24px 0 0;
 
}

/* Responsiveness */

@media (max-width: 1480px) {
  .slide-description {
    display: none;
  }

  .slide-title {
    font-size: 1.1rem;
  }

  .stacked-container h2 {
    font-size: 1rem;
  }
}


@media (max-width: 1000px) {
  .half-slide {
    display: none;
  }
  .slide-title {
    font-size: 1.2rem !important;
  }
}


@media (max-width: 750px) {
  .stacked-container {
    display: none;
  }

  .large-slide {
    margin-right: 0;
  }
	
	.splide__list {
		gap: 0;
	}
	
	.searchform input[type="text"] {
		width: 17rem !important;
	}
}

.text-box {
  background-color: #ffffff; 
  padding: 2rem;
  max-width: 1200px; 
  width: auto; 
  font-family: var(--body-regular);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-blue); 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  /* Multi-column layout */
  column-count: 2; 
  column-gap: 40px;

  /* Centering the box */
  margin: 4rem auto;
}

.text-box p {
  margin-bottom: 20px; 
	font-weight: 450;
}

.text-box p:first-of-type {
  margin-top: 0;
}


@media (max-width: 1000px) {
  .text-box {
    column-count: 1; 
  }
}


.content-section {
  display: flex;
  max-width: 1200px;
  margin: 8rem auto; 
  padding: 2rem;
}

/* Sidebar styling */
.sidebar {
  height: 50%;
  flex: 1;
  background-color: white;
  padding: 20px;
  margin-right: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.artist-thin-line {
  width: 33%;
  height: 1px;
  background-color: var(--dark-blue);
  margin-bottom: 20px;
}

.artist-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.artist-list li {
  font-family: var(--body-regular);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
  line-height: 1.5rem;
}


/* Ship portrait grid */
.ship-portrait-grid {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  grid-gap: 20px;
 
}

/* .grid-item {
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-height: 42rem;
} */

.grid-item a,
.grid-item a:hover { 
color: black;
	text-decoration: none;
}

.ship-image {
  width: 100%;
  height: 200px;
  object-fit: cover; 
}

.ship-info {
  padding: 20px;
}

.ship-name {
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin-top: 0;
  color: var(--dark-blue);
	font-weight: 550;
	line-height: 1.2
}

.ship-description {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}



.portraits-view-print {
  font-weight: 200;
  color: var(--dark-blue);
  cursor: pointer;
  transition: color 0.3s;
	margin-top: 2rem;
}

.view-print:hover {
  color: var(--dark-blue);
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .ship-portrait-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-ship-portrait-grid {
    grid-template-columns: 2fr 2fr !important; 
  }
}

@media (max-width: 700px) {
  .content-section {
    flex-direction: column-reverse;
  }

  .sidebar {
    margin-right: 0;
    margin-bottom: 20px;
    margin-top: 2rem;
  }

  .ship-portrait-grid {
    grid-template-columns: 1fr; 
  }
  .inner-ship-portrait-grid {
    grid-template-columns: 1fr !important; 
  }
}

.artist-list li:hover {
  color: var(--black);
  cursor: pointer;
 transform: scale(1.02);
}

/* Ship portrait grid styles */
.grid-item {
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; 
  position: relative;
  overflow: hidden; 
  max-height: 40rem;
	
}

.ship-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ship-info {
  padding: 20px;
  transition: opacity 0.3s ease; 
}

.portraits-view-print {
  font-weight: 200;
  color: var(--dark-blue);
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 0;
}



.grid-item:hover .portraits-view-print {
  opacity: 1; 
}

.footer {
  position: relative;
  background-color: #313e5f; 
  background-image: url('assets/footerbackground.jpg'); 
  background-size: cover; 
  background-position: center; 
  color: white;
  text-align: center; 
  padding: 0rem 6rem 6rem 6rem;

}

.footer::before {
  content: ''; 
  position: absolute;
  top: 0;
  left: 0; 
  right: 0; 
  bottom: 0; 
  background-color: rgba(
    49,
    62,
    95,
    0.879
  ); 
  z-index: 1;
}

.footer-logo {
  max-width: 200px;
	margin: auto;
  margin-bottom: 40px; 
  position: relative; 
  z-index: 2; 
  bottom: 0.75rem;
}

.footer-links {
  display: flex; 
  justify-content: center; 
  gap: 30px; 
  margin-bottom: 60px; 
  position: relative;
  z-index: 2; 
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem; 
  transition: color 0.3s; 
}

.footer-links a:hover {
  color: #f0e68c; 
}

.footer-text {
  font-size: 1rem;
  margin-bottom: 40px;
  padding: 0 20px; 
  position: relative;
  z-index: 2; 
}

.footer-credits {
  font-size: 0.9rem; 
  position: relative; 
  z-index: 2; 
  margin-bottom: 2rem;
}

/* Inner page styling */

.product-page-container {
  max-width: 1500px;
   margin: 2rem auto 6rem auto;
  padding: 2rem 1rem;
	
}

.breadcrumbs {
  font-family: var(--body-regular);
  font-size: 1rem;
  color: var(--dark-blue);
  margin: 2rem;
}

.breadcrumbs a {
  color: var(--dark-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #000;
}

.product-section {
  display: flex;
  gap: 80px;
  justify-content: space-between;
}

.product-image img {
 
  object-fit: contain;
  border-radius: 10px;
}

.product-details {
  flex: 1;
}

.product-title {
  font-size: 2.5rem;
  color: var(--dark-blue);
  margin-bottom: 2rem;
	line-height: 1.2;
}

.product-price {
  font-size: 1rem;
  color: var(--dark-blue);
  font-weight: 500;
  margin-bottom: 2rem;
}

.product-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark-blue);
  margin-bottom: 2rem;
}

.product-description p {
	margin-bottom: 1rem;
	font-weight: 450;
	line-height: 1.4;
}

.enquire-now-btn {
  background-color: var(--dark-blue);
  color: white;
  font-size: 1rem;
  padding: 0.3rem 1.5rem;
  margin-top: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
	display: flex;
    justify-content: center;
    text-align: center;
	max-width: 20rem;
}

.enquire-now-btn:hover {
  background-color: rgba(147, 147, 189, 0.728);
	text-decoration: none;
}

@media (max-width: 1200px) {
  .breadcrumbs {
    display: none;
  }
}

@media (max-width: 1200px) {
  .product-section {
    flex-direction: column;
    gap: 5px;
	align-items: center;
  }

  .product-title {
    font-size: 1.5rem;
	  margin-bottom: 0rem;
	  font-weight: 600;
  }

  

  .product-description {
    font-size: 1.1rem;
  }
	
	.short-description {
		margin-bottom: 1.5rem;
	}
	
	
	.product-description-container {
		margin-top: 1rem;
	}
	
	.welcome-section {
		margin: 0rem;
	}
}

.product-details p {
	margin-bottom: 1rem;
}

.inner-ship-portrait-grid {
  flex: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  grid-gap: 20px;
  margin: 0rem 4rem 4rem 4rem;
}

/* About us page styling */

.about-us-container {
  max-width: 1400px;
  margin: 6rem auto;
  padding: 20px;
}

.about-us-container h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: #2c3e50;
}

.about-us-content {
  column-count: 2;
  column-gap: 40px;
  column-width: 300px;
}

.about-us-content h2 {
  margin-top: 20px;
  font-size: 1.8rem;
  color: #34495e;
}

.about-us-content p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
	font-weight: 450;
}

.about-us-content h2:first-of-type {
  margin-top: 0;
}

/* Links */
a {
  color: #2980b9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .about-us-content {
    column-count: 1;
  }

  .about-us-container h1 {
    font-size: 2rem;
  }
}

.centered-text  {
	text-align: center !important;
	font-size: 1.2rem;
}


.wpforms-submit {
    background-color: var(--dark-blue) !important;
}


.wpforms-submit:hover {
    background-color: black !important;
}

.tnp-subscription input.tnp-submit {
	background-color: #536aa4 !important;
}


.tnp tnp-subscription  {
 margin: 2rem 0rem !important;
}

.tnp-subscription label, .tnp-profile label {
	font-size: 1rem !important;
}

@media (min-width: 600px) {
#wpforms-14-field_3 {
	max-width: 60%;
}
}

div.wpforms-container-full, div.wpforms-container-full * {
	margin: 0 auto !important
   
}

.wpforms-field-label {
	text-align: center !important;
	padding-bottom: 1rem !important;
}

.wpforms-submit-container {
	text-align: center !important;
}


@media (min-width: 1100px) {
.product-image img {
	max-width: 50rem;
	
  height: 30rem !important;
}
}

.short-description {
    font-weight: 480; 
    margin-bottom: 3rem; 
	color: var(--dark-blue)
}

.product-description-container {
    margin-top: 1.5rem;
    padding: 2rem; 
   
    background-color: #f9f9f9; 
}

.searchform {
    display: flex;
    justify-content: center; 
    margin: 2rem 0; 
	
}

.searchform input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc; 
    border-radius: 4px; 
    margin-right: 5px;
	font-size: 1.2rem;
	width: 25rem;
}

.searchform input[type="submit"] {
    margin: 0;
	padding: 0;
    border: white;
    cursor: pointer;

}


.search-button img {
    width: 24px; 
    height: auto; 
    
}

#searchsubmit {
	border: none;
	background-color: transparent !important;
}


#category-list li.active-author {
    font-weight: bold;
}

div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    margin-top: 2rem !important;
}

