
* {
  box-sizing: border-box;
}

:root {
    --main-color: #E9BF6E;
    --alt-color: #111;
    --main-color-dark: #E2AA3C;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #201b1d;
  background-color: #f8f6f3;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.dark body {
  color: white;
  background-color: #201b1d;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 3.5rem;
  }
  h3 {
    font-size: 2.5rem;
  }
}

p {
  margin-bottom: 1rem;
  line-height: 1.625;
}

.bg-main{
    background: var(--main-color);
}

.text-main{
    color: var(--main-color);
}

.bg-main-alt{
    background: var(--alt-color);
}

.text-main-alt{
    color: var(--alt-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #e9bf6e;
  color: #201b1d;
}

.btn-primary:hover {
  background-color: #201b1d;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: #e9bf6e;
  border: 2px solid #e9bf6e;
}

.btn-secondary:hover {
  background-color: #e9bf6e;
  color: #201b1d;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}


.btn-main,
.btn-main-inv {
    border-radius: 0.125rem;
    font-size: 15px;
    line-height: 1em;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.6px;
    padding: 1.25rem 2rem;
    border: 2px solid;
    transition: all 0.4s ease;
}

.btn-main {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #000;
}

.btn-main:hover {
    background-color: var(--main-color-dark);
    border-color: var(--main-color-dark);
    box-shadow: 0 0 15px rgba(224, 178, 152, 0.5);
    transform: translateY(-2px);
}

.btn-main-inv {
    background-color: transparent;
    border-color: var(--main-color);
    color: var(--main-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-main-inv:hover {
    box-shadow: 0 0 15px rgba(224, 178, 152, 0.5);
    transform: translateY(-2px);
}

.btn-main-inv:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-main-inv:hover:before {
    left: 100%;
}


/* Cards */
.card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 191, 110, 0.1);
}

.dark .card {
  background-color: #262626;
  border-color: rgba(233, 191, 110, 0.2);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dark .card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/*
.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: rgba(233, 191, 110, 0.1);
  border: 1px solid rgba(233, 191, 110, 0.3);
  border-radius: 9999px;
  color: #e9bf6e;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
*/

.section-header-luxury {
    max-width: 4xl;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(233, 191, 110, 0.1);
    border: 1px solid rgba(233, 191, 110, 0.3);
    border-radius: 50px;
    color: #e9bf6e;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.section-badge.dark {
    background: rgba(32, 27, 29, 0.2);
    border-color: rgba(32, 27, 29, 0.4);
    color: #201b1d;
}

.section-badge.light {
    background: rgba(233, 191, 110, 0.2);
    border-color: rgba(233, 191, 110, 0.4);
    color: #e9bf6e;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-title .title-main {
    color: #201b1d;
}

.section-title span {
    background: linear-gradient(135deg, #e9bf6e, #d4a855);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #525252;    
	max-width: 48rem;
    margin: 0 auto;
}

.dark .section-description {
    color: #d1d5db;
}

.section-description.dark {
    color: rgba(32, 27, 29, 0.8);
}

.section-description.light {
    color: rgba(255, 255, 255, 0.9);
}

/* Grid Systems */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes sketch {
  0% {
    stroke-dasharray: 0 1000;
  }
  100% {
    stroke-dasharray: 1000 0;
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-sketch {
  animation: sketch 2s ease-in-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}

.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}

.rounded {
  border-radius: 0.5rem;
}
.rounded-lg {
  border-radius: 0.75rem;
}
.rounded-xl {
  border-radius: 1rem;
}
.rounded-2xl {
  border-radius: 1.5rem;
}

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.shadow-lg {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.shadow-xl {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Color Utilities */
.text-gold {
  color: #e9bf6e;
}
.text-dark {
  color: #201b1d;
}
.text-light {
  color: #f8f6f3;
}
.text-gray {
  color: #737373;
}

.bg-gold {
  background-color: #e9bf6e;
}
.bg-dark {
  background-color: #201b1d;
}
.bg-light {
  background-color: #f8f6f3;
}
.bg-cream {
  background-color: #fdf9f3;
}

/* Responsive Utilities */
.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
}

/* Smooth Transitions */
.transition {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

/* Focus States */
*:focus {
  outline: none: ;
}

/* Selection */
::selection {
  background-color: #e9bf6e;
  color: #201b1d;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f8f6f3;
}

.dark ::-webkit-scrollbar-track {
  background: #201b1d;
}

::-webkit-scrollbar-thumb {
  background: #e9bf6e;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4a855;
}




/* Premium CTA Section */
.cta-premium {
    position: relative;
}

.cta-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    inset: 0;
}

.floating-shape {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, rgba(233, 191, 110, 0.6), rgba(233, 191, 110, 0.2));
    border-radius: 50%;
    animation: float-shapes 15s linear infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes float-shapes {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100px) translateX(50px) rotate(180deg);
        opacity: 0;
    }
}

.cta-content {
    max-width: 4xl;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(233, 191, 110, 0.1);
    border: 1px solid rgba(233, 191, 110, 0.3);
    border-radius: 50px;
    color: #e9bf6e;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.cta-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cta-title .title-line {
    display: block;
    color: #201b1d;
}

.dark .cta-title .title-line {
    color: white;
}

.cta-title .title-accent {
    background: linear-gradient(135deg, #e9bf6e, #d4a855);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #525252;
    margin-bottom: 3rem;
    max-width: 3xl;
    margin-left: auto;
    margin-right: auto;
}

.dark .cta-description {
    color: #d1d5db;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-primary-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #e9bf6e, #d4a855);
    color: #201b1d;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(233, 191, 110, 0.3);
}

.cta-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(233, 191, 110, 0.4);
}

.cta-secondary-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.5rem 3rem;
    background: transparent;
    color: #201b1d;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid rgba(233, 191, 110, 0.4);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.dark .cta-secondary-premium {
    color: white;
    border-color: rgba(233, 191, 110, 0.4);
}

.cta-secondary-premium:hover {
    background: rgba(233, 191, 110, 0.1);
    border-color: #e9bf6e;
    transform: translateY(-2px);
}

.btn-text {
    margin-right: 0.75rem;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.cta-primary-premium:hover .btn-icon,
.cta-secondary-premium:hover .btn-icon {
    transform: translateX(4px);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.cta-primary-premium:hover .btn-glow {
    opacity: 1;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    color: #737373;
    text-align: center;
}

.dark .cta-guarantee {
    color: #9ca3af;
}

.cta-guarantee i {
    color: #e9bf6e;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .section-badge {
      padding: 0.6rem 1.25rem;
      font-size: 0.6rem;
    }
  
    .section-description{
      font-size: 0.9rem;
    }
}