/* ---- Dogo & Dogo Global CSS ---- */

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* Typography & Titles */
.section-tag {
    display: inline-block; 
    font-weight: 900; 
    font-size: 0.78rem;
    letter-spacing: 0.15em; 
    text-transform: uppercase;
    padding: 5px 14px; 
    border-radius: 50px; 
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px; 
    line-height: 1.15;
    text-transform: none !important;
}

.section-sub { 
    font-size: 1.05rem; 
    color: #555; 
    max-width: 560px; 
    line-height: 1.7; 
}

/* Common Layout */
section { 
    padding: 90px 20px; 
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
}

.container-full {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Animations */
.reveal {
    opacity: 0; 
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { 
    opacity: 1; 
    transform: none; 
}
