/* ============================================================
   SKYFEEL DEVELOPMENTS — style.css
   Single shared stylesheet for header, body, footer includes.
   Depends on: Bootstrap 5 CDN + FontAwesome 6 CDN
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  --sf-black:      #050607;
  --sf-charcoal:   #11161c;
  --sf-ink:        #151a20;
  --sf-muted:      #66717f;
  --sf-light:      #f6f3ed;
  --sf-soft:       #fbfaf7;
  --sf-line:       rgba(17, 22, 28, .10);
  --sf-gold:       #c9a45c;
  --sf-gold-dark:  #a7833f;
  --sf-blue:       #007eb5;
  --sf-radius-card: 28px;
  --sf-radius-btn:  999px;
  --sf-section-py:  96px;
}

/* ------------------------------------------------------------
   2. BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
}

.main {
    min-height: calc(100vh - 70px);
}

.sf-footer {
    display: block !important;
    clear: both !important;
    width: 100% !important;
    background: #050607 !important;
    position: relative !important;
    z-index: 10 !important;
}

p {
  color: var(--sf-muted);
  font-size: 15px;
  line-height: 1.82;
  margin-bottom: 1rem;
}

img { max-width: 100%; height: auto; display: block; }

/* Soft animation on page loading */

.main{
	opacity:1 !important;
	animation:none !important;
	transform:none !important;
}



/* ------------------------------------------------------------
   3. TYPOGRAPHY HELPERS
   ------------------------------------------------------------ */
.sf-serif {
  font-family: 'Playfair Display', serif;
}

.sf-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.02;
  color: var(--sf-ink);
  margin: 0;
}

.sf-lead {
  font-size: 17px;
  line-height: 1.78;
  color: #6c7684;
}

.sf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sf-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sf-kicker::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--sf-gold);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------ */
.sf-container { max-width: 1280px; }

.sf-section {
  padding: var(--sf-section-py) 0;
  position: relative;
}

.sf-grid {
  --bs-gutter-x: 28px;
  --bs-gutter-y: 28px;
}

/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */
.sf-btn {
  border-radius: var(--sf-radius-btn);
  padding: 13px 28px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .03em;
  transition: all .25s ease;
  display: inline-block;
  text-decoration: none;
  border: 2px solid transparent;
}

.sf-btn-gold {
  background: var(--sf-gold);
  border-color: var(--sf-gold);
  color: #111;
  box-shadow: 0 14px 36px rgba(201, 164, 92, .28);
}
.sf-btn-gold:hover {
  background: var(--sf-gold-dark);
  border-color: var(--sf-gold-dark);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(167, 131, 63, .32);
}

.sf-btn-dark {
  background: var(--sf-charcoal);
  border-color: var(--sf-charcoal);
  color: #fff;
}
.sf-btn-dark:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

.sf-btn-ghost {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}
.sf-btn-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
  transform: translateY(-2px);
}

.sf-btn-outline-gold {
  background: transparent;
  border-color: var(--sf-gold);
  color: var(--sf-gold);
}
.sf-btn-outline-gold:hover {
  background: var(--sf-gold);
  color: #111;
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   6. NAVBAR
   ------------------------------------------------------------ */
.sf-navbar {
  background: var(--sf-charcoal);
  padding: 0;
  min-height: 70px;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 24px rgba(0,0,0,.28);
}

.sf-navbar .navbar-brand img {
  height: 100px;
  width: auto;
}

.sf-navbar .nav-link {
  color: rgba(255,255,255,.78) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 24px 14px !important;
  transition: color .2s ease;
  text-transform: uppercase;
}

.sf-navbar .nav-link:hover,
.sf-navbar .nav-link.active {
  color: var(--sf-gold) !important;
}

.sf-navbar .navbar-toggler {
  border-color: rgba(255,255,255,.3);
}
.sf-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.sf-navbar-cta {
  margin-left: 10px;
}

/* ------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------ */
.sf-hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5,6,7,.96) 0%, rgba(5,6,7,.82) 45%, rgba(5,6,7,.32) 100%),
    url('https://skyfeeldevelopments.com/img/hero-bg.jpg') center center / cover no-repeat;
  position: relative;
}

/* Fade bottom into white */
.sf-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to top, #fff, rgba(255,255,255,0));
  pointer-events: none;
}

.sf-hero .container { position: relative; z-index: 2; }

.sf-hero h1 {
  color: #fff;
  font-size: clamp(44px, 6.5vw, 90px);
  margin-bottom: 24px;
}
.sf-hero h1 span { color: var(--sf-gold); }

.sf-hero > .container p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  max-width: 580px;
}

/* Hero image placeholder (right column) */
.sf-hero-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 42px 90px rgba(0,0,0,.48);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.sf-hero-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* Image caption below hero image */
.sf-hero-caption {
  background: #fff;
  color: var(--sf-ink);
  border-radius: 0 0 28px 28px;
  padding: 20px 24px;
}
.sf-hero-caption strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.22;
  color: var(--sf-ink);
}
.sf-hero-caption span {
  display: block;
  color: #6b7280;
  font-size: 13px;
  margin-top: 5px;
  line-height: 1.55;
}

/* ------------------------------------------------------------
   8. VALUE STRIP
   ------------------------------------------------------------ */
.sf-value-strip {
  position: relative;
  z-index: 3;
  margin-top: -60px;
  padding-bottom: 0;
}

.sf-value-box {
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--sf-line);
  box-shadow: 0 28px 80px rgba(15,23,42,.14);
  overflow: hidden;
}

.sf-value-item {
  padding: 30px 28px;
  border-right: 1px solid #edf0f2;
  height: 100%;
}
.sf-value-item:last-child { border-right: 0; }

.sf-value-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f3ead9;
  color: #8b6b2d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 17px;
}

.sf-value-item strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--sf-ink);
  margin-bottom: 6px;
}
.sf-value-item span {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
  display: block;
}

/* ------------------------------------------------------------
   9. ABOUT
   ------------------------------------------------------------ */
.sf-about { background: #fff; }

.sf-logo-vault {
  min-height: 520px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 24% 20%, rgba(201,164,92,.22), transparent 34%),
    linear-gradient(145deg, #121820, #030405);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 36px;
  box-shadow: 0 30px 90px rgba(15,23,42,.20);
  position: sticky;
  top: 90px;
}
.sf-logo-vault img {
  max-width: 280px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
}

.sf-editorial-card {
  background: var(--sf-soft);
  border: 1px solid var(--sf-line);
  border-radius: var(--sf-radius-card);
  padding: 40px;
}
.sf-editorial-card p:last-of-type { margin-bottom: 0; }

/* Capability pills */
.sf-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.sf-capability {
  background: #fff;
  border: 1px solid rgba(201,164,92,.28);
  border-radius: 14px;
  padding: 14px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #715724;
  text-align: center;
  letter-spacing: .02em;
}

/* ------------------------------------------------------------
   10. SECTION BACKGROUNDS
   ------------------------------------------------------------ */
.sf-soft-bg {
  background: linear-gradient(180deg, var(--sf-light) 0%, #fff 100%);
}
.sf-dark-bg {
  background: linear-gradient(180deg, #121820 0%, #030405 100%);
}
.sf-dark-bg .sf-title,
.sf-dark-bg h2,
.sf-dark-bg h3 { color: #fff; }
.sf-dark-bg .sf-lead { color: rgba(255,255,255,.70); }
.sf-dark-bg p { color: rgba(255,255,255,.62); }

/* ------------------------------------------------------------
   11. PROJECT CARDS
   ------------------------------------------------------------ */
.sf-project {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--sf-radius-card);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15,23,42,.10);
  transition: transform .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sf-project:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 80px rgba(15,23,42,.16);
}

.sf-project-img {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #dbe2e8;
  flex-shrink: 0;
}
.sf-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.sf-project:hover .sf-project-img img { transform: scale(1.06); }

/* subtle gradient over image bottom */
.sf-project-img::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,.52), transparent);
}

.sf-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #111820;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

.sf-project-body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sf-project-body h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--sf-blue);
  margin: 0 0 8px;
}
.sf-project-body p {
  font-size: 13px;
  color: var(--sf-muted);
  margin: 0;
}

.sf-project-action { margin-top: auto; padding-top: 16px; }
.sf-project-action .btn {
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
}









/* Featured card – slightly taller image */
.sf-featured .sf-project-img { height: 320px; }

/* Dark bg card override */
.sf-dark-bg .sf-project {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}
.sf-dark-bg .sf-project-body h3 { color: #60b8e0; }
.sf-dark-bg .sf-project-body p   { color: rgba(255,255,255,.55); }

/* ------------------------------------------------------------
   12. STATEMENT BAND
   ------------------------------------------------------------ */
.sf-statement {
  background: linear-gradient(135deg, var(--sf-charcoal), #030405);
  border-radius: 32px;
  padding: 56px 52px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 36px 90px rgba(15,23,42,.22);
}
.sf-statement h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 58px);
  margin-bottom: 14px;
}
.sf-statement p { color: rgba(255,255,255,.72); margin-bottom: 0; }

/* ------------------------------------------------------------
   13. CONTACT / MAP
   ------------------------------------------------------------ */
.sf-contact { background: #f5f4f1; }

.sf-map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
  border-radius: var(--sf-radius-card);
  box-shadow: 0 20px 50px rgba(15,23,42,.12);
}

/* Form container – placeholder styling */
.sf-form-wrap {
  background: #fff;
  border-radius: var(--sf-radius-card);
  padding: 36px;
  box-shadow: 0 22px 60px rgba(15,23,42,.12);
  border: 1px solid rgba(15,23,42,.08);
}
.sf-form-placeholder {
  border: 2px dashed rgba(201,164,92,.45);
  border-radius: 18px;
  padding: 48px 24px;
  text-align: center;
  color: var(--sf-gold);
  font-size: 14px;
  font-weight: 700;
}
.sf-form-placeholder i { font-size: 30px; margin-bottom: 12px; display: block; }

/* ------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------ */
.sf-footer {
  background: var(--sf-black);
  color: rgba(255,255,255,.55);
  padding: 56px 0 0;
}

.sf-footer-brand img {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.sf-footer-tagline {
  color: rgba(255,255,255,.45);
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 300px;
}

.sf-footer-heading {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sf-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sf-footer-links li { margin-bottom: 10px; }
.sf-footer-links a {
  color: rgba(255,255,255,.52);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease;
}
.sf-footer-links a:hover { color: var(--sf-gold); }

.sf-footer-divider {
  border-color: rgba(255,255,255,.10);
  margin: 48px 0 0;
}

.sf-footer-bottom {
  background: rgba(0,0,0,.35);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,.38);
  text-align: center;
}
.sf-footer-bottom strong { color: rgba(255,255,255,.60); }

/* Social icons */
.sf-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  transition: all .22s ease;
  text-decoration: none;
}
.sf-social a:hover {
  background: var(--sf-gold);
  border-color: var(--sf-gold);
  color: #111;
}

/* ------------------------------------------------------------
   15. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1199.98px) {
  .sf-project-body h3 { font-size: 18px; }
}

@media (max-width: 991.98px) {
  :root { --sf-section-py: 72px; }

  .sf-hero { min-height: auto; padding: 100px 0 72px; }
  .sf-hero-img-wrap img { height: 340px; }

  .sf-value-strip { margin-top: -36px; }
  .sf-value-item { border-right: 0; border-bottom: 1px solid #edf0f2; }
  .sf-value-item:last-child { border-bottom: 0; }

  .sf-logo-vault { min-height: 300px; position: relative; top: auto; }
  .sf-capability-grid { grid-template-columns: repeat(2, 1fr); }

  .sf-statement { padding: 40px 32px; }
}

@media (max-width: 767.98px) {
  :root { --sf-section-py: 56px; }

  .sf-hero { padding: 88px 0 56px; }
  .sf-hero h1 { font-size: 38px; }
  .sf-hero::after { display: none; }
  .sf-hero-img-wrap img { height: 260px; }

  .sf-title { font-size: 28px !important; }

  .sf-editorial-card,
  .sf-form-wrap { padding: 24px; border-radius: 20px; }

  .sf-capability-grid { grid-template-columns: 1fr; }

  .sf-project-img,
  .sf-featured .sf-project-img { height: 220px; }

  .sf-statement { padding: 30px 22px; border-radius: 24px; }

  .sf-map iframe { height: 250px; }

  .sf-footer { padding: 44px 0 0; }
}




.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.fade-right {
    opacity: 1;
    transform: none;
    animation: fadeRight 1s ease forwards;
    animation-delay: .3s;
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

