:root {
  --marian-blue: #1a3c6e;
  --marian-blue-dark: #0d2347;
  --marian-gold: #c5a059;
  --marian-gold-light: #e6c985;
  --text-dark: #1f2937;
  --text-light: #f3f4f6;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #f8fafc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel Decorative", cursive;
  color: var(--marian-blue);
}

p {
  font-family: "Libre Caslon Text", serif;
}

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

/* Header/Nav */
header {
  background-color: var(--white);
  
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: "Cinzel Decorative", cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--marian-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  font-family: "Inter", sans-serif;
}

.nav-links a:hover {
  color: var(--marian-gold);
}

.btn-primary {
  background-color: var(--marian-blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--marian-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 60, 110, 0.3);
}

/* Hero Section */
.hero {
    background-color: #d6dee8;
    color: var(--text-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    color: var(--marian-blue);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-family: 'Libre Caslon Text', serif;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 500px;
    
    border-radius: 20px; /* Optional, if the image is rectangular */
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  color: var(--marian-gold);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

/* App Showcase/Screenshots */
.showcase {
  padding: 100px 0;
  background-color: #f8fafc;
}

.showcase-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.showcase-text {
  flex: 1;
}

.showcase-image {
    flex: 1;
    background: linear-gradient(135deg, #e6c985 0%, #c5a059 100%);
    height: auto;
    min-height: 400px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
    padding: 40px;
}

.app-screenshot {
    max-width: 90%;
    height: auto;
    max-height: 450px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.app-screenshot:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Privacy Page Specific */
.privacy-content {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.privacy-content p {
  margin-bottom: 20px;
  color: #4b5563;
}

.privacy-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  font-family: "Libre Caslon Text", serif;
  color: #4b5563;
}

.privacy-content li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: var(--marian-blue-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--marian-gold);
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.created-by {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.created-by p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.fuzati-logo {
    height: 50px;
    opacity: 0.9;
    transition: opacity 0.3s;
    /* filter: brightness(0) invert(1); Removed to show original colors */
    background-color: rgba(255, 255, 255, 0.9); /* Add light background to ensure visibility */
    padding: 5px 10px;
    border-radius: 4px;
}

.fuzati-logo:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .showcase-content {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-image img {
        max-height: 300px;
        margin-top: 40px;
    }
}
