﻿/* ============================================================= */
/* SGT HOME PAGE STYLES                                          */
/* Matches Squarespace design                                    */
/* ============================================================= */

/* ---------- PUBLIC BODY & HEADER ---------- */
.sgt-public-body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0d0d0d;
}

.sgt-public-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
}

.sgt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.sgt-header-logo {
    flex-shrink: 0;
}

.sgt-logo-img {
    height: 120px;
    width: auto;
}

.sgt-header-nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 50px;
}

.sgt-header-right {
    flex-shrink: 0;
}

.sgt-nav-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

    .sgt-nav-link:hover {
        color: #FF00FF;
    }

.sgt-nav-btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: #FF00FF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .sgt-nav-btn:hover {
        background: #dd00dd;
        transform: translateY(-2px);
    }

.sgt-header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.sgt-public-main {
    padding-top: 110px;
}

/* ===================================================================== */
/* NEON HERO SECTION                                                     */
/* ===================================================================== */
.sgt-neon-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.sgt-neon-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sgt-neon-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.sgt-neon-hero-bg::after {
    display: none;
}

.sgt-neon-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 60px 40px;
}

.sgt-neon-hero-columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.sgt-neon-hero-left {
    flex: 1;
    text-align: left;
}

.sgt-neon-hero-right {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sgt-neon-logo {
    width: 100%;
    max-width: 400px;
    animation: logoFloat 4s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.6)) drop-shadow(0 0 20px rgba(255, 20, 147, 0.4)) drop-shadow(0 0 30px rgba(0, 217, 255, 0.3));
    }

    to {
        filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.9)) drop-shadow(0 0 40px rgba(255, 20, 147, 0.6)) drop-shadow(0 0 60px rgba(0, 217, 255, 0.5)) drop-shadow(0 0 80px rgba(0, 217, 255, 0.3));
    }
}

.sgt-neon-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #ff1493, #ff4400, #ff8c00, #ffd700, #00ff66, #00d9ff, #a855f7, #ff1493);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: neonFlow 4s linear infinite, neonPulse 2s ease-in-out infinite alternate;
    margin-bottom: 40px;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
}

.sgt-neon-description {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sgt-neon-heading {
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.1;
}

/* RGB Rainbow Text Effect */
.sgt-rgb-text {
    background: linear-gradient(90deg, #ff1493, #ff4400, #ff8c00, #ffd700, #00ff66, #00d9ff, #a855f7, #ff1493);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: neonFlow 4s linear infinite;
    font-weight: 900;
    -webkit-text-stroke: 1px transparent;
    letter-spacing: 2px;
}

@keyframes neonFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes neonPulse {
    from {
        filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.5)) drop-shadow(0 0 30px rgba(0, 217, 255, 0.3));
    }

    to {
        filter: drop-shadow(0 0 25px rgba(255, 20, 147, 0.8)) drop-shadow(0 0 50px rgba(0, 217, 255, 0.5));
    }
}

.sgt-neon-tagline {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.sgt-neon-welcome {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid #00d9ff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.sgt-neon-welcome-text {
    font-size: 18px;
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.sgt-neon-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.sgt-neon-btn-primary,
.sgt-neon-btn-secondary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sgt-neon-btn-primary {
    background: linear-gradient(90deg, #ff1493, #ff0044);
    color: #ffffff;
    border: 2px solid #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
}

    .sgt-neon-btn-primary:hover {
        box-shadow: 0 0 30px rgba(255, 20, 147, 1);
        transform: translateY(-2px);
    }

.sgt-neon-btn-secondary {
    background: transparent;
    color: #00d9ff;
    border: 2px solid #00d9ff;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

    .sgt-neon-btn-secondary:hover {
        background: rgba(0, 217, 255, 0.1);
        box-shadow: 0 0 25px rgba(0, 217, 255, 0.8);
        transform: translateY(-2px);
    }

/* ---------- BASE RESET & VARIABLES ---------- */
.sgt-home {
    --sgt-pink: #ff1493;
    --sgt-pink-hover: #ff006e;
    --sgt-yellow: #ffdd00;
    --sgt-dark: #1a1a1a;
    --sgt-darker: #0d0d0d;
    --sgt-text: #ffffff;
    --sgt-text-muted: #cccccc;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--sgt-text);
    background: var(--sgt-darker);
    line-height: 1.6;
    /* Break out of .sgt-admin-main-inner container */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow-x: hidden;
}

    .sgt-home *,
    .sgt-home *::before,
    .sgt-home *::after {
        box-sizing: border-box;
    }

/* ---------- BUTTONS ---------- */
.sgt-btn {
    display: inline-block;
    padding: 24px 80px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.sgt-btn-primary {
    background: var(--sgt-pink);
    color: #ffffff;
    box-shadow: 0 4px 25px rgba(255, 20, 147, 0.5);
}

    .sgt-btn-primary:hover {
        background: var(--sgt-pink-hover);
        transform: translateY(-3px);
        box-shadow: 0 6px 35px rgba(255, 20, 147, 0.7);
    }

/* ============================================================= */
/* HERO SECTION                                                   */
/* ============================================================= */
.sgt-hero {
    position: relative;
    min-height: auto;
    padding: 60px 20px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #a024a0 0%, #2a0a2a 100%);
}

.sgt-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .sgt-hero-bg::after {
        content: none;
    }

.sgt-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.sgt-hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 900px;
}

.sgt-opening-badge {
    max-width: 700px;
    width: 100%;
    margin-bottom: 30px;
}

.sgt-hero-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    padding: 50px 80px;
    margin-bottom: 40px;
    max-width: 700px;
}

.sgt-hero-location {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.sgt-hero-date {
    font-size: 38px;
    font-weight: 900;
    color: #ffdd00;
    margin: 0 0 24px 0;
}

.sgt-hero-subtext {
    font-size: 17px;
    color: var(--sgt-text);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================= */
/* INTRO SECTION - Two column with logo on right                 */
/* ============================================================= */
.sgt-intro {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
}

.sgt-intro-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .sgt-intro-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: none;
    }

.sgt-intro-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sgt-intro-content {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.sgt-intro-text-side {
    flex: 1;
    text-align: center;
}

.sgt-intro-logo-side {
    flex: 0 0 500px;
}

.sgt-intro-logo {
    width: 100%;
    max-width: 500px;
}

.sgt-intro-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 72px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--sgt-text);
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.sgt-intro-title-pink {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 72px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--sgt-pink);
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.sgt-intro-text {
    font-size: 40px;
    font-weight: 900;
    color: var(--sgt-text);
    line-height: 1.6;
    text-align: center;
}

/* ============================================================= */
/* PILLAR SECTIONS - Two column layouts                          */
/* ============================================================= */
.sgt-pillar {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sgt-pillar-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .sgt-pillar-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: none;
    }

.sgt-pillar-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.sgt-pillar-content {
    position: relative;
    z-index: 1;
    padding: 80px 60px;
    width: 50%;
    max-width: none;
    text-align: center;
}

.sgt-pillar-heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 72px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--sgt-text);
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.sgt-pillar-heading-accent {
    font-family: 'Open Sans', sans-serif;
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.sgt-pillar-teamwork .sgt-pillar-heading-accent {
    /* RGB effect applied via .sgt-rgb-text class */
}

.sgt-pillar-text-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 30px 40px;
    margin-bottom: 30px;
}

.sgt-pillar-text {
    font-size: 40px;
    font-weight: 900;
    color: var(--sgt-text);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.sgt-pillar-subheading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 56px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--sgt-text);
    margin-bottom: 25px;
    letter-spacing: 0.01em;
}

.sgt-pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .sgt-pillar-list li {
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        font-size: 36px;
        font-weight: 400;
        text-transform: uppercase;
        color: var(--sgt-text);
        letter-spacing: 0.01em;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 12px;
        padding: 25px 20px;
        text-align: center;
        flex: 1;
    }

/* Education pillar - content on right */
.sgt-pillar-education {
    justify-content: flex-end;
}

    .sgt-pillar-education .sgt-pillar-heading-accent {
        /* RGB effect applied via .sgt-rgb-text class */
    }

    .sgt-pillar-education .sgt-pillar-bg {
        z-index: 0;
    }

    .sgt-pillar-education .sgt-pillar-bg-img {
        object-position: center left;
    }

    .sgt-pillar-education .sgt-pillar-text-card {
        background: rgba(0, 0, 100, 0.7);
    }

    .sgt-pillar-education .sgt-pillar-list li {
        background: rgba(0, 0, 100, 0.7);
    }

.sgt-pillar-list-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

    .sgt-pillar-list-grid li {
        flex: 1 1 calc(33.33% - 10px);
        min-width: 120px;
    }

/* Angled sections using clip-path */
.sgt-pillar-teamwork {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 60px));
    margin-bottom: -60px;
    position: relative;
    z-index: 3;
}

.sgt-pillar-education {
    clip-path: polygon(0 0, 100% 60px, 100% calc(100% - 60px), 0 100%);
    margin-bottom: -60px;
    position: relative;
    z-index: 2;
}

.sgt-pillar-fun {
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
    position: relative;
    z-index: 1;
}

    .sgt-pillar-fun .sgt-pillar-heading-accent {
        /* RGB effect applied via .sgt-rgb-text class */
    }

    .sgt-pillar-fun .sgt-pillar-text-card {
        background: rgba(0, 0, 0, 0.5);
    }

    .sgt-pillar-fun .sgt-pillar-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        width: 100%;
    }

        .sgt-pillar-fun .sgt-pillar-list li {
            background: rgba(0, 0, 0, 0.5);
        }

/* ============================================================= */
/* PARENTS SECTION                                                */
/* ============================================================= */
.sgt-parents {
    position: relative;
    padding: 150px 40px;
    overflow: hidden;
}

.sgt-parents-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .sgt-parents-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: none;
    }

.sgt-parents-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sgt-parents-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.sgt-parents-guitars {
    flex: 0 0 450px;
}

.sgt-guitars-svg {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.sgt-parents-text-side {
    flex: 1;
}

.sgt-parents-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 72px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--sgt-text);
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

    .sgt-parents-title span {
        color: #FF00FF;
    }

.sgt-parents-text {
    font-size: 36px;
    font-weight: 600;
    color: var(--sgt-text);
    line-height: 1.6;
    margin-bottom: 25px;
}

    .sgt-parents-text span {
        color: #FF00FF;
    }

.sgt-parents-disclaimer {
    font-size: 24px;
    color: var(--sgt-text-muted);
}

/* ============================================================= */
/* NOTIFICATION SECTION                                           */
/* ============================================================= */
.sgt-notification {
    position: relative;
    padding: 100px 20px;
    text-align: left;
    overflow: hidden;
}

.sgt-notification-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .sgt-notification-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: none;
    }

.sgt-notification-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sgt-notification-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.sgt-notification-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 56px;
    font-weight: 400;
    color: #FFE500;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.sgt-notification-text {
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    color: var(--sgt-text);
    text-align: center;
    margin-bottom: 40px;
}

/* ---------- FORM STYLES ---------- */
.sgt-notification-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sgt-form-group {
    width: 100%;
}

.sgt-form-label {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--sgt-text);
    margin-bottom: 8px;
}

    .sgt-form-label span {
        font-size: 16px;
        font-weight: 400;
        color: var(--sgt-text-muted);
    }

.sgt-form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.sgt-form-field {
    flex: 1;
}

.sgt-form-hint {
    display: block;
    font-size: 14px;
    color: var(--sgt-text-muted);
    margin-top: 5px;
}

.sgt-input {
    width: 100%;
    padding: 15px 18px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 6px;
    outline: none;
    transition: all 0.3s ease;
}

    .sgt-input::placeholder {
        color: #999;
    }

    .sgt-input:focus {
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(255, 0, 255, 0.3);
    }

.sgt-textarea {
    resize: vertical;
    min-height: 100px;
}

.sgt-input-full {
    width: 100%;
}

.sgt-btn-submit {
    background: #FF00FF;
    color: #ffffff;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(255, 0, 255, 0.5);
    align-self: flex-start;
}

    .sgt-btn-submit:hover {
        background: #dd00dd;
        transform: translateY(-3px);
    }

    .sgt-btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.sgt-notification-success {
    padding: 25px;
    background: rgba(39, 174, 96, 0.2);
    border: 2px solid rgba(39, 174, 96, 0.5);
    border-radius: 12px;
}

    .sgt-notification-success p {
        margin: 0;
        font-size: 20px;
        color: #27ae60;
    }

.sgt-notification-error {
    padding: 20px;
    background: rgba(231, 76, 60, 0.2);
    border: 2px solid rgba(231, 76, 60, 0.5);
    border-radius: 12px;
    margin-top: 20px;
}

    .sgt-notification-error p {
        margin: 0;
        font-size: 16px;
        color: #e74c3c;
    }

/* ============================================================= */
/* FOOTER                                                         */
/* ============================================================= */
.sgt-footer {
    background: var(--sgt-darker);
    padding: 70px 20px 50px;
    text-align: center;
}

.sgt-footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.sgt-footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

    .sgt-footer-links a {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--sgt-text);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .sgt-footer-links a:hover {
            color: var(--sgt-pink);
        }

.sgt-footer-divider {
    width: 80px;
    height: 2px;
    background: var(--sgt-pink);
    margin: 0 auto 40px;
}

.sgt-footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
}

.sgt-footer-company {
    font-size: 15px;
    color: var(--sgt-text-muted);
    margin-bottom: 10px;
}

.sgt-footer-address {
    font-size: 14px;
    color: var(--sgt-text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.sgt-footer-copyright {
    font-size: 13px;
    color: var(--sgt-text-muted);
    opacity: 0.7;
}

/* ============================================================= */
/* RESPONSIVE                                                     */
/* ============================================================= */
@media (max-width: 1024px) {
    .sgt-intro-content {
        flex-direction: column;
        text-align: center;
    }

    .sgt-intro-logo-side {
        flex: none;
        order: -1;
    }

    .sgt-intro-logo {
        max-width: 300px;
    }

    .sgt-pillar-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .sgt-hero {
        padding: 60px 20px 80px;
    }

    .sgt-opening-badge {
        max-width: 320px;
    }

    .sgt-hero-card {
        padding: 30px 25px;
    }

    .sgt-hero-location {
        font-size: 18px;
    }

    .sgt-hero-date {
        font-size: 24px;
    }

    .sgt-hero-subtext {
        font-size: 15px;
    }

    .sgt-btn {
        padding: 18px 40px;
        font-size: 14px;
    }

    .sgt-intro-title {
        font-size: 32px;
    }

    .sgt-intro-text {
        font-size: 17px;
    }

    .sgt-pillar {
        min-height: auto;
    }

    .sgt-pillar-content {
        padding: 50px 25px;
        max-width: 100%;
    }

    .sgt-pillar-heading {
        font-size: 28px;
    }

    .sgt-pillar-list li {
        font-size: 20px;
    }

    .sgt-pillar-education {
        justify-content: flex-start;
    }

        .sgt-pillar-education .sgt-pillar-content {
            text-align: left;
        }

        .sgt-pillar-education .sgt-pillar-list {
            text-align: left;
        }

        .sgt-pillar-education .sgt-pillar-bg::after {
            background: none;
        }

    .sgt-parents-title,
    .sgt-notification-title {
        font-size: 32px;
    }

    .sgt-form-row {
        flex-direction: column;
    }

    .sgt-footer-links {
        gap: 25px;
    }
}
