/* CSS Variables for easy color management */
:root {
    /* UPDATED: Rose Gold/Ochre (Matches Cliffs/Sunlight) */
    --rose-gold: #B4866B; 
    --rose-gold-darker: #9A7359; 
    
    /* NEW: Ocean Blue (Secondary Accent for contrast/depth) */
    --ocean-blue: #3A668D; 
    
    /* Text and Neutrals */
    --text-dark: #2c2c2c; /* Softer near-black for modern look */
    --text-light: #555;
    
    /* Backgrounds: Brighter, calmer zen tones */
    --background-white: #fff;
    --background-zen: #fcfbf9; /* Very light sandstone/ochre hint */
}

@font-face {
  font-family: 'Uroob';
  src: url('/fonts/Uroob.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* General Body & Typography */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.7; /* Increased line-height for serenity */
    color: #2c2c2c;
    background-color: white;
    
    background: url('/img/bg.png');
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Uroob', serif;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    font-weight: 500;
    color: #6FAAD1; 
    text-shadow: 1px 1px 1px rgba(0,0,0,0.25);
}

h1 {
    font-size: 7em;
    line-height: 1.2;
}

h2 {
    font-size: 6em;
    line-height: 1.2;
}

/* Key headings use the warm ochre accent color */
h3 {
    font-size: 4.2em;
    margin-bottom: 0.1em;
    line-height: 1em;
}

h4 {
    font-size: 2.4em;
    margin-bottom: 0.5em;
    line-height: 1em;
}

a {
    color: blue; 
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--rose-gold-darker);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
header {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 15px 0;
    /* box-shadow: 0 1px 4px rgba(0,0,0,0.08); */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;        
    
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px; 
    width: auto; 
    opacity: 0.85;
}
.logo img:hover {
    opacity: 1;
}

h1.logo {
	font-size: 2em;
	margin: 0px;
	padding: 0px;
	color: white;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul.links li {
    margin-left: 30px;
    margin-right: 30px;
}

nav ul li a {
    color: white;
    font-weight: 500;
    font-size: 1.5em;
    letter-spacing: 0.5px;
    font-family: 'Uroob', serif;
    
}

nav ul li a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

nav .lang li {
	margin-left: 4px;
	margin-right: 4px;
	color: white;
	font-weight: normal;
}

nav .lang li.active a {
	font-weight: bold;
	text-decoration: underline;
}

/* --- Hero Section --- */


.hero-section {
  position: relative;
  height: 75vh;
  background: url('/img/hero-bg.jpg') no-repeat center center / cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;      /* centers horizontally */
  align-items: center;          /* centers vertically */
  gap: 80px;                    /* space between logo and content */
  padding: 0 60px;
  color: #fff;
  text-align: left;
  box-shadow: 2px 2px 10px rgba(0,0,22,0.5);
}

.hero-section img {
  max-width: 300px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5));
}

.hero-section1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Soft, cool overlay to harmonize with the sea and sky, while maintaining contrast */
    background-color: rgba(58, 102, 141, 0.4); /* Ocean Blue with 30% opacity */
    z-index: 1;
}

.hero-content {
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
  border-radius: 130px;
  margin-top: 20px;
  
}

.hero-logo {
	height: 400px;
}

.hero-content p {
    font-size: 1.6em;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 400;
    color: var(--rose-gold); /* Sun-gold subtitle stands out */
}

.hero-content h2 {
    font-size: 5.8em;
    margin-top: 0;
    margin-bottom: 30px;
    color: #fff;
}

.reference-lookup {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.reference-lookup input[type="text"] {
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    width: 320px;
    font-size: 1.1em;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
}

.reference-lookup button {
    background-color: var(--ocean-blue); /* Button uses the cool ocean blue */
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.reference-lookup button:hover {
    background-color: #315575; /* Slightly darker blue hover */
}

/* --- Section Styling --- */
section {
    padding: 50px 0;
    text-align: center;
}



.imprint-section {
	margin-top: 80px;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.about-text {
    flex: 2;
}

.about-text p {
    margin-bottom: 1.2em;
    font-size: 1.1em;
    color: var(--text-light); 
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    background: url('/img/section-bg.png');
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
    margin-top: 40px;
}

.service-item {
    flex: 1;
    background: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-item p {
    color: var(--text-light);
    font-size: 1em;
}

/* Testimonials Section */


.testimonial-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial-wrapper blockquote {
    
    font-size: 1.4em;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--ocean-blue); /* Testimonial border uses the deep blue */
    padding-left: 25px;
    margin: 0;
    max-width: 450px;
    text-align: left;
}

.testimonial-wrapper strong {
    font-style: normal;
    font-size: 0.8em;
    color: white;
    margin-top: 15px;
    font-weight: 500;
    background-color: #333;
    font-family: 'Playfair Display', serif;
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.15em;
    
}


/* Contact Section */
.contact-section {
    background: url('/img/section-bg.png');
}

.contact-details p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: var(--ocean-blue); /* Contact button uses deep blue */
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #315575;
}

.legal-section {
    background: url('/img/section-bg.png');
}


/* --- Footer --- */
footer {
    background-color: #2f5277;
    color: #f2f2f2;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer p {
    margin: 0;
}

.footer-links a {
    color: #f2f2f2;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--rose-gold);
}

/* Scroll-Fade Effect */
.scroll-fade {
    opacity: 50;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 992px) {
    .about-section .container {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        order: 2;
    }
    .about-image {
        order: 1;
        margin-bottom: 30px;
    }
    .services-grid {
        flex-direction: column;
    }
    .testimonial-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 75vh;
    }
    .hero-content h2 {
        font-size: 3em;
    }
    .hero-content p {
        font-size: 1.3em;
    }
    .reference-lookup {
        flex-direction: column;
        gap: 15px;
    }
    
    footer .container {
        flex-direction: column;
        gap: 15px;
    }
    .footer-links a {
        margin: 0 10px;
    }



  .hero-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-section img {
    max-width: 200px;
  }

  .hero-content {
    padding: 0 20px;
  }
  
  
  .logo img {
	  height: 25px;
	}
	
   header {
   	padding: 7px 0;
   }

  .hero-section {
    height: auto;
    padding-top: 60px;
    gap: 15px;
  }
  
  .hero-section img {
    max-width: 130px;
  }
  
  .hero-content h2 { 
  	margin-bottom: 16px;
  }
  
  .reference-lookup {
     margin-top: 7px;
     margin-bottom: 7px;
  }
  
  nav .lang li {
	  margin-left: 2px;
	  margin-right: 2px;
  }
	  
  nav ul.lang li a {
  	font-size: 1em;
  }
  

  
  
  .about-image img {
  	display: none;
  }
  
  
}

a.login {
	position: absolute;
	right: 10px;
	top: 4px;
	z-index: 100000;
	padding: 5px;
	font-size: 1.25em;
	opacity: 0.8;
}
a.login:hover {
	opacity: 1;
}

.hidden {
  display: none !important;
}
