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

/* Fonts */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova_light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova_regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova_bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova_boldit.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova_extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova_black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova_blackit.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

:root {
    --orange: #FF8C00;
    --violet: #4B0082;
    --cream: #FFF8F0;
    --black: #1a1a1a;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--orange);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
header {
    text-align: center;
    padding: 3rem 1rem 2rem;
    position: relative;
}

.logo-container {
    max-width: 600px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.logo-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.2));
}

/* Decorative bubbles */
.bubble-deco {
    position: fixed;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 3px solid var(--violet);
    z-index: 1000;
    pointer-events: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bubble-deco::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 25%;
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid var(--violet);
    border-radius: 50%;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.bubble-1 {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    animation: bubble-float-1 4s ease-in-out infinite;
}

.bubble-2 {
    top: 15%;
    right: 15%;
    width: 45px;
    height: 45px;
    animation: bubble-float-2 5s ease-in-out infinite;
}

.bubble-3 {
    top: 40%;
    left: 5%;
    width: 50px;
    height: 50px;
    animation: bubble-float-3 4.5s ease-in-out infinite;
}

.bubble-4 {
    top: 50%;
    right: 8%;
    width: 35px;
    height: 35px;
    animation: bubble-float-4 5.5s ease-in-out infinite;
}

.bubble-behind {
    z-index: 1;
}

.bubble-5 {
    top: 60%;
    left: 18%;
    width: 70px;
    height: 70px;
    animation: bubble-float-5 6s ease-in-out infinite;
}

.bubble-6 {
    top: 75%;
    right: 15%;
    width: 55px;
    height: 55px;
    animation: bubble-float-6 5s ease-in-out infinite;
}

/* Main container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Content sections */
.panel {
    background: white;
    border: 3px solid var(--black);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.panel h2 {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.panel p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.panel strong {
    color: var(--violet);
    font-weight: 900;
}

/* Speech bubble style */
.bubble {
    background: var(--orange);
    color: white;
    border: 4px solid var(--black);
    border-radius: 30px;
    padding: 2rem 2.5rem;
    margin: 2rem auto;
    position: relative;
    max-width: 700px;
    box-shadow: 6px 6px 0 var(--violet);
}

.bubble::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 30px solid var(--black);
}

.bubble::before {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 25px solid var(--orange);
    z-index: 1;
}

.bubble p {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

/* Content list */
.content-list {
    list-style: none;
    margin: 1.5rem 0;
}

.content-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.content-list li::before {
    content: '●';
    position: absolute;
    left: 0.5rem;
    top: 15%;
    color: var(--orange);
    font-size: 1.3rem;
}

/* Instagram button */
.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: white;
    border: 3px solid var(--black);
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    text-transform: uppercase;
    text-align: center;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.instagram-btn:hover {
    background: var(--violet);
    transform: scale(1.05);
}

.instagram-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Graph panel */
.main_panel_graph {
    width: 100%;
    margin: 2rem auto;
}

.main_panel_graph p {
    margin-top: .8rem;
    font-size: 0.8rem;
    font-style: italic;
    font-weight: lighter;
    text-align: center;
}

.panel_graph {
    position: relative;
    width: 50%;
    margin: 0 auto;
}

.panel_graph img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.panel_graph img:first-child {
    position: relative;
}

.panel_graph img:nth-child(2) {
    animation: graph-float-1 4s ease-in-out infinite;
}

.panel_graph img:nth-child(3) {
    animation: graph-float-2 4.5s ease-in-out infinite;
}

.panel_graph img:nth-child(4) {
    animation: graph-float-3 5s ease-in-out infinite;
}

.panel_graph img:nth-child(5) {
    animation: graph-float-4 4.8s ease-in-out infinite;
}

.panel_graph img:nth-child(6) {
    animation: graph-float-5 5.2s ease-in-out infinite;
}

/* Newsletter signup section */
.signup-section {
    background: white;
    border: 3px solid var(--black);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.signup-section h2 {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.signup-section > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.mailchimp-embed {
    padding: 0;
}

/* MailChimp form styling */
#mc_embed_shell {
    width: 100% !important;
}

#mc_embed_signup {
    background: transparent !important;
    width: 100% !important;
    max-width: 100% !important;
}

#mc_embed_signup_scroll {
    padding: 0 !important;
}

#mc_embed_signup h2 {
    font-family: 'Proxima Nova', sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.8rem !important;
    color: var(--violet) !important;
    text-transform: uppercase !important;
    margin-bottom: 1rem !important;
    letter-spacing: 2px !important;
}

#mc_embed_signup .mc-field-group {
    margin-bottom: 1.5rem;
}

#mc_embed_signup label {
    font-weight: 700 !important;
    color: var(--black) !important;
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

#mc_embed_signup input[type="email"] {
    width: 100% !important;
    padding: 0.8rem !important;
    border: 3px solid var(--violet) !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-family: 'Lato', sans-serif !important;
    transition: border-color 0.3s !important;
}

#mc_embed_signup input[type="email"]:focus {
    outline: none !important;
    border-color: var(--orange) !important;
}

#mc_embed_signup .button {
    background: var(--orange) !important;
    color: white !important;
    border: 3px solid var(--black) !important;
    border-radius: 8px !important;
    padding: 0.8rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    font-family: 'Lato', sans-serif !important;
    cursor: pointer !important;
    transition: transform 0.2s, background 0.3s !important;
    text-transform: uppercase !important;
}

#mc_embed_signup .button:hover {
    background: var(--violet) !important;
    transform: scale(1.05);
}

#mc_embed_signup .indicates-required {
    font-size: 0.9rem !important;
    color: var(--black) !important;
    margin-bottom: 1rem !important;
}

#mc_embed_signup .asterisk {
    color: var(--orange) !important;
}

#mc_embed_signup .clear {
    text-align: center;
    margin-top: 1rem;
}

#mc_embed_signup div.mce_inline_error {
    background-color: transparent !important;
    color: var(--orange) !important;
    font-weight: 700 !important;
    padding: 0.5rem 0 !important;
}

#mc_embed_signup #mce-success-response,
#mc_embed_signup #mce-error-response {
    padding: 1rem !important;
    margin: 1rem 0 !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
}

#mc_embed_signup #mce-success-response {
    background-color: #d4edda !important;
    color: #155724 !important;
    border: 2px solid #c3e6cb !important;
}

#mc_embed_signup #mce-error-response {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border: 2px solid #f5c6cb !important;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--violet);
    color: white;
    margin-top: 3rem;
}

footer a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
    display: inline-block;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .bubble-5 {
        left: 5%;
    }

    .bubble-6 {
        right: 5%;
    }
}

@media (max-width: 768px) {
    .panel h2,
    .signup-section h2 {
        font-size: 1.5rem;
    }

    .bubble {
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }

    .instagram-btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .signup-section, .panel {
        padding: 2rem 1.5rem;
    }

    #mc_embed_signup h2 {
        font-size: 1.5rem !important;
    }

    #mc_embed_signup .button {
        width: 100%;
        padding: 1rem !important;
    }

    .panel_graph {
        width: 80%;
    }

    .bubble-deco {
        display: none;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bubble-float-1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, -20px);
    }
}

@keyframes bubble-float-2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, 15px);
    }
}

@keyframes bubble-float-3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 25px);
    }
}

@keyframes bubble-float-4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-15px, -15px);
    }
}

@keyframes bubble-float-5 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes bubble-float-6 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10px, -20px);
    }
}

@keyframes graph-float-1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(3px, -5px);
    }
}

@keyframes graph-float-2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-4px, 3px);
    }
}

@keyframes graph-float-3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(5px, 4px);
    }
}

@keyframes graph-float-4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-3px, -4px);
    }
}

@keyframes graph-float-5 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(4px, 5px);
    }
}