/* ========================================
   THE HOUSE OF SMOKE - MAIN STYLESHEET
   ======================================== */

/* Color Palette Variables */
:root {
    --ember-orange: #e25822;
    --smoked-charcoal: #111111;
    --ash-grey: #888888;
    --warm-bone-white: #fef9f5;
    --transparent-smoke: rgba(255, 255, 255, 0.05);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-ember: rgba(226, 88, 34, 0.3);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Roboto', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(to bottom, #1a1a1a, #2c2c2c);
    color: var(--warm-bone-white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Main content wrapper for elastic effect */
#main-wrapper {
    position: relative;
    min-height: 100vh;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Elastic scroll effect indicators */
.elastic-indicator {
    position: fixed;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.elastic-indicator.top {
    top: -200px;
    background: radial-gradient(ellipse at center bottom, rgba(226, 88, 34, 0.6) 0%, transparent 70%);
}

.elastic-indicator.bottom {
    bottom: -200px;
    background: radial-gradient(ellipse at center top, rgba(226, 88, 34, 0.6) 0%, transparent 70%);
}

body.overscroll-top .elastic-indicator.top {
    opacity: 1;
}

body.overscroll-bottom .elastic-indicator.bottom {
    opacity: 1;
}

/* Enhanced elastic pull effect */
body.elastic-pull {
    transition: none;
}

body.elastic-release {
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
}

h2 {
    font-family: 'Playfair Display', serif;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--ember-orange);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.98) 0%, rgba(44, 44, 44, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(226, 88, 34, 0.2);
    border-bottom: 2px solid rgba(226, 88, 34, 0.3);
}

.header-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(226, 88, 34, 0.15), transparent);
    pointer-events: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-flame {
    font-size: 1.5rem;
    animation: flicker 2s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { transform: scale(1) rotate(0deg); filter: brightness(1); }
    25% { transform: scale(1.1) rotate(-5deg); filter: brightness(1.2); }
    50% { transform: scale(0.95) rotate(5deg); filter: brightness(0.9); }
    75% { transform: scale(1.05) rotate(-3deg); filter: brightness(1.1); }
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--ember-orange);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(226, 88, 34, 0.5);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--warm-bone-white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ember-orange), #ff7a4a);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--ember-orange);
}

.nav-link:hover {
    color: var(--ember-orange);
    text-shadow: 0 0 10px rgba(226, 88, 34, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--warm-bone-white);
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(226, 88, 34, 0.3);
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(226, 88, 34, 0.1), transparent),
                url('https://scontent-lga3-3.xx.fbcdn.net/v/t39.30808-6/490653480_9369667756477149_3872899903051563510_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=833d8c&_nc_ohc=IPvccXkDP4QQ7kNvwEWjFx9&_nc_oc=AdnnFkSGv5Csa6sQ-QQQAGXrfvcF_LUPFyUDe1aPT2_ixXiPL3gwjdimR2-5dUgLF60&_nc_zt=23&_nc_ht=scontent-lga3-3.xx&_nc_gid=Sd6p8KNNIap086FWPWYePw&oh=00_AfRimjieYVcgV-tzVGln3ppvB0Y6MRXXCTTCtWsUqj2B7Q&oe=688DD75E') center/cover;
}

.smoke-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.smoke-particle {
    position: absolute;
    bottom: -100px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    animation: float-smoke 20s infinite;
}

.smoke-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.smoke-particle:nth-child(2) {
    left: 50%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.smoke-particle:nth-child(3) {
    left: 80%;
    animation-delay: 10s;
    animation-duration: 25s;
}

@keyframes float-smoke {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-120vh) scale(3) rotate(180deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #ff8a50 0%, #e25822 50%, #b94010 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(226, 88, 34, 0.8);
    animation: flame-glow 3s ease-in-out infinite alternate;
}

@keyframes flame-glow {
    0% { filter: brightness(1) drop-shadow(0 0 20px rgba(226, 88, 34, 0.6)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 138, 80, 0.8)); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--warm-bone-white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2.5rem;
    color: rgba(254, 249, 245, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* ========================================
   SMOKE BUTTON
   ======================================== */
.smoke-button {
    background: linear-gradient(135deg, #ff6b35 0%, #e25822 50%, #c94a1a 100%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    position: relative;
    overflow: visible;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 25px rgba(226, 88, 34, 0.4),
                0 2px 10px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.smoke-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.smoke-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(226, 88, 34, 0.6),
                0 5px 15px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.smoke-button:hover::before {
    opacity: 1;
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-smoke {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.smoke-button:hover .button-smoke {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: smoke-pulse 3s ease-out infinite;
}

.button-fire {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.smoke-button:hover .button-fire {
    opacity: 1;
}

.flame {
    width: 10px;
    height: 15px;
    background: linear-gradient(to top, #ff6b35, #ffd93d);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker-flame 0.5s ease-in-out infinite;
    filter: blur(1px);
}

.flame:nth-child(2) {
    animation-delay: 0.1s;
    height: 12px;
}

.flame:nth-child(3) {
    animation-delay: 0.2s;
    height: 14px;
}

@keyframes flicker-flame {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.1) translateY(-2px); }
}

@keyframes smoke-pulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
        filter: blur(0);
    }
    50% {
        opacity: 0.3;
        filter: blur(5px);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5);
        filter: blur(10px);
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 80px 0;
    background: var(--smoked-charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(226, 88, 34, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.3s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(17, 17, 17, 0.8) 100%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(226, 88, 34, 0.3),
                0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--ember-orange);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.service-card:hover .service-overlay {
    opacity: 0.5;
}

.service-card h3 {
    color: var(--ember-orange);
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.service-card p {
    color: rgba(254, 249, 245, 0.8);
    padding: 0 1.5rem 1rem;
    line-height: 1.6;
    text-align: left;
}

.price {
    font-size: 1.3rem;
    color: var(--ember-orange);
    font-weight: bold;
    padding: 0 1.5rem 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
}

/* ========================================
   GALLERY CAROUSEL
   ======================================== */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(17, 17, 17, 0.8) 100%);
}

.carousel-wrapper {
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(226, 88, 34, 0.1);
    background: radial-gradient(circle at center, rgba(226, 88, 34, 0.05), transparent);
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1.5, 0.5, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: all 0.5s ease;
}

.carousel-slide.active img {
    filter: brightness(1);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h3 {
    color: var(--ember-orange);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    color: rgba(254, 249, 245, 0.9);
    font-size: 1.1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 17, 17, 0.8);
    color: var(--ember-orange);
    border: 2px solid rgba(226, 88, 34, 0.5);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--ember-orange);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(226, 88, 34, 0.6);
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--ember-orange);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(226, 88, 34, 0.6);
}

.dot:hover {
    background: rgba(226, 88, 34, 0.6);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(44, 44, 44, 0.9)),
                url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1920&h=1080&fit=crop') center/cover;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--ember-orange);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: rgba(254, 249, 245, 0.9);
    line-height: 1.8;
}

.story-highlight {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--ember-orange);
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 4px solid var(--ember-orange);
    background: rgba(226, 88, 34, 0.1);
    border-radius: 0 10px 10px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(226, 88, 34, 0.2));
    z-index: 1;
}

.about-image:hover img {
    transform: scale(1.1);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 80px 0;
    background: var(--smoked-charcoal);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--ember-orange);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(226, 88, 34, 0.2);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: rgba(254, 249, 245, 0.9);
}

.testimonial cite {
    color: var(--ember-orange);
    font-weight: bold;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 80px 0;
    background: linear-gradient(to bottom, #2c2c2c, #1a1a1a);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(226, 88, 34, 0.3);
    border-radius: 10px;
    color: var(--warm-bone-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ember-orange);
    box-shadow: 0 0 10px rgba(226, 88, 34, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(254, 249, 245, 0.5);
}

.contact-info h3 {
    color: var(--ember-orange);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    text-align: center;
    font-size: 1.2rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--smoked-charcoal);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(226, 88, 34, 0.3);
}

.footer p {
    color: rgba(254, 249, 245, 0.7);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="0.1"] {
    transition-delay: 0.1s;
}

[data-delay="0.2"] {
    transition-delay: 0.2s;
}

[data-delay="0.4"] {
    transition-delay: 0.4s;
}

[data-delay="0.6"] {
    transition-delay: 0.6s;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(17, 17, 17, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-brand {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        padding: 0 20px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Gallery */
    .carousel-slide img {
        height: 400px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-top: 2rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }

    /* General */
    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
    
    /* Smoke Button */
    .smoke-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-brand {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .carousel-slide img {
        height: 300px;
    }
    
    .slide-content {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .slide-content h3 {
        font-size: 1.3rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
}
/* EMOJI LINE STYLES: START */
.emoji-line {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.emoji {
  display: inline-block;
  margin: 0 0.5rem;
  animation: float 3s ease-in-out infinite, pulse 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.85; }
}
/* EMOJI LINE STYLES: END */


