/* src/styles.scss */
:root {
  --color-primary: #8B1A1A;
  --color-primary-dark: #6B1212;
  --color-primary-light: #A52929;
  --color-gold: #D4AF37;
  --color-gold-dark: #B8960C;
  --color-gold-light: #E8CB5A;
  --color-cream: #FDF6E3;
  --color-cream-dark: #F5E8C0;
  --color-dark: #1A0A0A;
  --color-dark-mid: #3D1515;
  --color-white: #FFFFFF;
  --color-text: #2C1010;
  --color-text-light: #6B4C4C;
  --color-border: #D4AF3740;
  --font-heading:
    "Playfair Display",
    Georgia,
    serif;
  --font-body:
    "Lato",
    Arial,
    sans-serif;
  --shadow-sm: 0 2px 8px rgba(26,10,10,.12);
  --shadow-md: 0 4px 20px rgba(26,10,10,.18);
  --shadow-lg: 0 8px 40px rgba(26,10,10,.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-gold);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section-sm {
  padding: 3rem 0;
}
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--color-gold);
}
.text-primary {
  color: var(--color-primary);
}
.text-cream {
  color: var(--color-cream);
}
.bg-dark {
  background-color: var(--color-dark);
}
.bg-primary {
  background-color: var(--color-primary);
}
.bg-cream {
  background-color: var(--color-cream);
}
.bg-gold {
  background-color: var(--color-gold);
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
.gap-3 {
  gap: 1.5rem;
}
.gap-4 {
  gap: 2rem;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.grid {
  display: grid;
  gap: 2rem;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (max-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
}
.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}
.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-dark);
  border-bottom: 2px solid var(--color-gold);
  box-shadow: var(--shadow-md);
}
.navbar__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.navbar__brand .brand-text {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}
.navbar__brand .brand-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--color-cream);
  letter-spacing: 0.1em;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.navbar__links a {
  color: var(--color-cream);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
}
.navbar__cta {
  background: var(--color-gold);
  color: var(--color-dark) !important;
  font-weight: 700 !important;
}
.navbar__cta:hover {
  background: var(--color-gold-dark) !important;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.navbar__hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition);
}
.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 1024px) {
  .navbar__links {
    display: none;
    gap: 0;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: 1.5rem;
    border-bottom: 2px solid var(--color-gold);
  }
  .navbar__links.open {
    display: flex;
  }
  .navbar__links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .navbar__hamburger {
    display: flex;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--color-dark) url("./media/sruthi_front_page_photo.jpg") center/cover no-repeat;
  padding-top: 70px;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(26, 10, 10, 0.55) 0%,
      rgba(61, 21, 21, 0.4) 60%,
      rgba(139, 26, 26, 0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding: 4rem 1.5rem;
}
.hero__tagline {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.hero__title {
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--color-white);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}
.hero__subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--color-gold);
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.section-heading .subtitle {
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-heading .divider {
  width: 80px;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      var(--color-gold),
      var(--color-primary));
  margin: 1rem auto 0;
  border-radius: 2px;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card__header {
  background: var(--color-primary);
  color: var(--color-cream);
  padding: 1.5rem;
}
.card__header h3 {
  color: var(--color-cream);
}
.card__body {
  padding: 1.5rem;
}
.card__footer {
  padding: 1rem 1.5rem;
  background: var(--color-cream-dark);
  border-top: 1px solid var(--color-border);
}
.logo-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--color-gold);
  background:
    linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-dark-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.2), var(--shadow-lg);
}
.logo-circle--sm {
  width: 50px;
  height: 50px;
  border-width: 2px;
}
.logo-circle--lg {
  width: 200px;
  height: 200px;
}
.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-circle .initials {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.form-group input.ng-invalid.ng-touched,
.form-group select.ng-invalid.ng-touched,
.form-group textarea.ng-invalid.ng-touched {
  border-color: #e53e3e;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238B1A1A' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 3rem;
}
.form-group .error-message {
  color: #e53e3e;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}
table th {
  background: var(--color-primary);
  color: var(--color-cream);
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
table tr:hover td {
  background: var(--color-cream);
}
table tr:last-child td {
  border-bottom: none;
}
.page-header {
  background:
    linear-gradient(
      135deg,
      var(--color-dark) 0%,
      var(--color-primary) 100%);
  padding: 7rem 1.5rem 4rem;
  text-align: center;
  color: var(--color-cream);
}
.page-header h1 {
  color: var(--color-cream);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}
.page-header p {
  color: var(--color-gold);
  font-size: 1.1rem;
  font-weight: 300;
}
.footer {
  background: var(--color-dark);
  color: var(--color-cream);
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--color-gold);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand .brand-name {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.footer__brand p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer h4 {
  color: var(--color-gold);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 0.5rem;
}
.footer ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.footer ul a:hover {
  color: var(--color-gold);
}
.footer__contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer__bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}
.loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.alert-success {
  background: #f0fff4;
  border-left: 4px solid #38a169;
  color: #276749;
}
.alert-error {
  background: #fff5f5;
  border-left: 4px solid #e53e3e;
  color: #c53030;
}
.alert-info {
  background: #ebf8ff;
  border-left: 4px solid #3182ce;
  color: #2b6cb0;
}
.stepper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  gap: 0;
}
.stepper__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stepper__step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.stepper__step .label {
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.stepper__step.active .num {
  background: var(--color-primary);
  color: var(--color-cream);
}
.stepper__step.done .num {
  background: var(--color-gold);
  color: var(--color-dark);
}
.stepper .sep {
  width: 50px;
  height: 2px;
  background: var(--color-border);
  align-self: center;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-gold {
  background: var(--color-gold);
  color: var(--color-dark);
}
.badge-primary {
  background: var(--color-primary);
  color: var(--color-cream);
}
.badge-green {
  background: #c6f6d5;
  color: #276749;
}
.divider-gold {
  width: 80px;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      var(--color-gold),
      var(--color-primary));
  border-radius: 2px;
  margin: 1rem auto;
}
.main-content {
  padding-top: 70px;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
