/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #3a0c0f;
  --secondary-color: #fcf1db;
  --text-light: #fcf1db;
  --text-dark: #3a0c0f;
  --bg-dark: #3a0c0f;
  --border-color: #fcf1db;
  --transition: all 0.3s ease;
  
  /* Typography */
  --font-title: 'Old Standard TT', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
  line-height: 1.6;
}

.ct-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Global Heading Styles */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-light);
}

/* Big Titles - Old Standard TT */
h1 {
  font-family: var(--font-title);
  font-weight: 700;
}

/* Section/Card Titles - Playfair Display */
h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Smaller headings */
h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
}

/* Body text uses Poppins (already set in body) */
p, span, a, li, label, input, textarea, button {
  font-family: var(--font-body);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 100%;
  padding: 0 20px;
}

/* Section Styling */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-light);
  font-weight: 300;
}

/* Buttons */
.btn {
  font-family: var(--font-body);
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid var(--secondary-color);
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(252, 241, 219, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-50 {
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .content-box {
    padding: 25px;
  }

  section {
    padding: 50px 0;
  }

  .btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }

  .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 35px;
  }

  section {
    padding: 40px 0;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 100%;
  }

  .container {
    padding: 0 15px;
  }

  .container-fluid {
    padding: 0 15px;
  }
}



.content-main {
	.sub-title {
		max-width: 240px;
		color: #FFF;
		font-size: 22px;
		font-weight: 700;
		line-height: 130%;
		letter-spacing: -0.66px;
	}
	
	h1 {
		margin-left: -12px;
		text-shadow: 0 4px 53.1px rgba(38, 35, 35, 0.26);
		font-size: clamp(1rem, 12.752vw + 1.21rem, 7.688rem);
		font-weight: 600;
		line-height: 90%; /* 197.1px */
		letter-spacing: -8.76px;
		background: linear-gradient(180deg, #FFF 17.73%, #F7CFB4 92.44%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
	}
}
