/* Global Styles */
body {
    font-family: 'Segoe UI', 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #232526 0%, #b3701e 100%);
    color: #fff;
    padding-top: 64px;
    margin: 0;
    min-height: 100vh;
    letter-spacing: 0.01em;
    font-size: 1.08rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    color: #b3701e;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1.1rem;
    line-height: 1.2;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4, h5, h6 { font-size: 1.1rem; }

p, ul, ol, li, label, input, textarea {
    color: #fff;
    font-size: 1.08rem;
    font-family: inherit;
}

section, .section {
    padding: 48px 0 48px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.container, .container-fluid {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.card, .service-card {
    background: rgba(35, 37, 38, 0.98);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    border: 1.5px solid #b3701e;
    color: #fff;
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover, .service-card:hover {
    box-shadow: 0 12px 40px rgba(44,62,80,0.22);
    transform: translateY(-6px) scale(1.02);
}

.btn, .btn-primary, .btn-outline-danger, .btn-danger, .btn-success {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 1.08rem;
    padding: 0.6rem 1.4rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}
.btn-primary {
    background: #b3701e;
    border: none;
    color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
    background: #a05d13;
    color: #fff;
}
.btn-outline-danger {
    border-color: #b3701e;
    color: #b3701e;
    background: transparent;
}
.btn-outline-danger:hover {
    background: #b3701e;
    color: #fff;
}
.btn-success {
    background: #27ae60;
    border: none;
}
.btn-success:hover {
    background: #219150;
}
.btn-danger {
    background: #c0392b;
    border: none;
}
.btn-danger:hover {
    background: #a93226;
}

.navbar {
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    background: #232526 !important;
    min-height: 64px;
}
.navbar .navbar-brand, .navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 1.08rem;
    transition: color 0.2s, transform 0.2s;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
    color: #b3701e !important;
    transform: scale(1.08);
}

footer, .footer {
    background: #232526;
    color: #fff;
    padding: 32px 0 16px 0;
    font-size: 1.05rem;
    border-top: 2px solid #b3701e;
}
footer a, .footer a {
    color: #b3701e;
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover, .footer a:focus {
    color: #fff;
    text-decoration: underline;
}

blockquote {
    font-style: italic;
    color: #b3701e;
    border-left: 4px solid #b3701e;
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.img-fluid, .card-img-top, .menu-img, .gallery-img, img:not(.snc-logo):not(.snc-logo-footer):not(.snc-logo-hero) {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    display: block;
    border-radius: 0.5rem;
}
.snc-logo, .snc-logo-footer {
    height: 32px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}
.snc-logo-footer {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background: #fff;
    padding: 2px;
}

.menu-caption {
    color: #232526 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: block !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    box-shadow: none !important;
    margin-bottom: 1.2em !important;
    text-shadow: none !important;
    text-align: center !important;
}

@media (max-width: 991px) {
    .container, .container-fluid { padding-left: 12px !important; padding-right: 12px !important; }
    section, .section { padding: 32px 0 32px 0; }
}
@media (max-width: 767px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }
    .btn, .btn-primary, .btn-outline-danger, .btn-danger, .btn-success { font-size: 1rem; padding: 0.5rem 1rem; }
    .card, .service-card { padding: 1.2rem 0.7rem; }
    .container, .container-fluid { padding-left: 6px !important; padding-right: 6px !important; }
    .row { margin-left: 0 !important; margin-right: 0 !important; }
    .footer, footer { font-size: 0.95rem !important; }
    .img-fluid, .card-img-top, .menu-img, .gallery-img { height: auto !important; }
}

/* Services */
.service-card img {
    height: 200px;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        text-align: center;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
  .container, .container-fluid { padding-left: 8px !important; padding-right: 8px !important; }
  .row { margin-left: 0 !important; margin-right: 0 !important; }
  .navbar-nav { text-align: left !important; }
  .footer, footer { font-size: 0.95rem !important; }
  .btn { font-size: 1rem !important; }
  .card { margin-bottom: 1rem !important; }
  .img-fluid, .card-img-top, .menu-img, .gallery-img { width: 100% !important; height: auto !important; }
}

/* Responsive Images - Global */
.img-fluid, .card-img-top, .menu-img, .gallery-img, img:not(.snc-logo):not(.snc-logo-footer):not(.snc-logo-hero) {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
  display: block;
}
.snc-logo,
.snc-logo-footer {
  height: 32px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.snc-logo-footer {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  background: #fff;
  padding: 2px;
}
@media (max-width: 600px) {
  .snc-logo,
  .snc-logo-footer {
    height: 22px;
  }
  .snc-logo-footer {
    right: 6px;
    bottom: 6px;
  }
}

.snc-logo-hero {
    display: block;
    margin: 0 auto 18px auto;
    height: 120px;
    max-height: 120px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0);
    background: rgba(255, 255, 255, 0);
    will-change: transform;
    transition: transform 0.2s cubic-bezier(.4,2,.6,1);
}
@media (max-width: 600px) {
    .snc-logo-hero {
        height: 60px;
        max-height: 60px;
        margin-bottom: 10px;
    }
} 