.about-us-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-us-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    box-sizing: border-box;
    background: rgba(255,255,255,1);
    border-radius: 24px;
    padding-top: 36px;
    padding-bottom: 36px;
    box-shadow: 0 4px 32px rgba(30,44,116,0.08);
    margin-bottom: 20px;
    margin-top: 56px;
}

.about-us-container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about-column {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-width: 0;
    padding: 32px 24px;
}

.about-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1;
}

.about-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1E2C74;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.about-body {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.about-list li {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    opacity: 0.9;
}

.about-list li::before {
    content: '•';
    color: #ebcc34;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.about-divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, #e0e0e0, #ebcc34, #e0e0e0, transparent);
    margin: 0;
}

@media (max-width: 900px) {
    .about-us-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 1.5rem;
    }
    .about-column {
        max-width: 100%;
        padding: 24px 8px;
    }
    .about-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    .about-heading {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    .about-body, .about-list li {
        font-size: 1rem;
    }
    .about-list {
        text-align: center;
    }
    .about-list li {
        padding-left: 0;
        padding-top: 8px;
    }
    .about-list li::before {
        position: static;
        margin-right: 8px;
    }
    .about-divider {
        display: none;
    }
}

@media (max-width: 600px) {
    .about-us-section {
        /* padding: 60px 0 40px 0; */
        
    }
    
    .about-us-container {
        gap: 32px;
        padding: 0 1rem;
        margin-bottom: 10px;
    }
    
    .about-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .about-heading {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
}

.party-ideas-section {
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    gap: 0;
    overflow: hidden;
    margin-bottom: 48px;
}

.party-ideas-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.party-ideas-row:first-child {
    background: #eaf6ff;
    border-radius: 24px;
    padding: 24px 0;
}

.party-ideas-row-bg {
    background: #fff3d1;
}

.party-ideas-text-col, .party-ideas-image-col {
    flex: 1 1 0;
    width: 50%;
    min-width: 0;
    box-sizing: border-box;
}

.party-ideas-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 5vw;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    max-width: 100%;
}

.party-ideas-bg {
    background: #fff3d1;
}

.party-ideas-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1E2C74;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.party-ideas-body {
    font-size: 1.18rem;
    color: #444;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
    max-width: 520px;
    word-break: break-word;
}

.party-ideas-image-col {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    margin: 0;
    background: none;
}

.party-ideas-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 24px 24px 0;
    box-shadow: none;
    background: #eee;
    display: block;
}

.party-ideas-image.no-radius {
    border-radius: 0 !important;
}

@media (max-width: 900px) {
    .party-ideas-row {
        flex-direction: column;
    }
    .party-ideas-text-col, .party-ideas-image-col {
        width: 100%;
        max-width: 100%;
        padding: 24px 4vw;
    }
    .party-ideas-image {
        border-radius: 0 0 24px 24px;
        min-height: 120px;
        max-height: 260px;
    }
}

@media (max-width: 700px) {
    .party-ideas-section {
        overflow: hidden;
    }
    .party-ideas-row {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 18px;
        min-height: unset;
    }
    .party-ideas-row:first-child {
        padding: 12px 0;
        border-radius: 18px;
    }
    .party-ideas-text-col, .party-ideas-image-col {
        padding: 12px 2vw;
        min-width: 0;
        min-height: unset;
        max-width: 100%;
    }
    .party-ideas-text-col {
        min-height: unset;
    }
    .party-ideas-heading {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .party-ideas-body {
        font-size: 1rem;
    }
    .party-ideas-image {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: unset;
        max-height: 160px;
        object-fit: cover;
        display: block;
    }
}

/* Restore initial modern footer style, full width, three rows, playful icon shadows */
.site-footer {
  width: 100%;
  background: linear-gradient(120deg, #ffe6fa 0%, #e0f7fa 100%);
  color: #1e2c74;
  font-family: var(--font-body);
  font-size: 1.1rem;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 32px rgba(215,38,61,0.08), 0 2px 24px rgba(30,44,116,0.07);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.footer-main-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 36px 2rem 12px 2rem;
}
.footer-brand-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-logo-modern {
  font-size: 2.5rem;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 8px #ebcc34);
}
.footer-brand-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: #d7263d;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.footer-brand-desc-modern {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #1e2c74;
  opacity: 0.95;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}
.footer-info-modern {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 48px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #1e2c74;
  opacity: 0.95;
  font-weight: 400;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.footer-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  word-break: break-word;
}
.footer-icon-modern {
  font-size: 1.3em;
  opacity: 0.85;
}
.icon-shadow {
  filter: drop-shadow(0 2px 8px #ebcc34) drop-shadow(0 0px 2px #d7263d);
}
.footer-info-row a {
  color: #d7263d;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s;
}
.footer-info-row a:hover {
  color: #8a2be2;
}
.footer-channel-meta {
  font-size: 0.98em;
  color: #bbb;
  margin-left: 6px;
}
.footer-bottom-modern {
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 1.1rem;
  padding: 18px 0 0 0;
  border-top: 1px solid #eee;
  margin-top: 18px;
  font-family: var(--font-body);
}
.footer-cols {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 2rem 12px 2rem;
}
.footer-col {
  flex: 1 1 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-brand-modern {
  align-items: flex-start;
}
.footer-info-modern {
  align-items: flex-start;
}
.footer-copyright-col {
  align-items: flex-end;
  justify-content: flex-end;
}
.footer-bottom-modern {
  width: 100%;
  text-align: right;
  color: #888;
  font-size: 1.1rem;
  padding: 0;
  border-top: none;
  margin-top: 0;
  font-family: var(--font-body);
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: center;
  font-size: 1.1rem;
}
.footer-links-col a {
  color: #d7263d;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s;
}
.footer-links-col a:hover {
  color: #8a2be2;
}
@media (max-width: 900px) {
  .footer-main-modern {
    padding: 24px 1rem 8px 1rem;
    gap: 18px;
  }
  .footer-info-modern {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .footer-brand-title {
    font-size: 1.4rem;
  }
  .footer-info-row {
    font-size: 1rem;
  }
  .footer-bottom-modern {
    font-size: 1rem;
  }
  .footer-cols {
    flex-direction: column;
    gap: 18px;
    padding: 24px 1rem 8px 1rem;
    align-items: stretch;
  }
  .footer-col, .footer-brand-modern, .footer-info-modern, .footer-links-col {
    align-items: center !important;
    min-width: 0;
  }
  .footer-bottom-modern {
    text-align: center;
    font-size: 1rem;
  }
}
/* Remove previous .footer class styles */
.footer, .footer-section, .footer-links, .footer-contact, .footer-social-icons {
  display: none !important;
}

.about-us-bg {
    background: url('/assets/topright_strip.png') center/cover no-repeat;
    width: 100%;
    min-height: 100px;
    padding: 0;
    margin: 0;
    display: block;
} 

:root {
    --font-title: 'Caveat', 'Poiret One', cursive, sans-serif;
    --font-body: 'Poiret One', 'Caveat', cursive, sans-serif;
}

.about-heading,
.party-ideas-heading,
.hero-event-title {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 2.8rem;
    color: #d7263d;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .about-heading,
    .party-ideas-heading,
    .hero-event-title {
        font-size: 1.7rem;
        margin-bottom: 14px;
    }
}

body,
.about-body,
.party-ideas-body,
.hero-event-desc,
.service-desc {
    font-family: var(--font-body);
    font-weight: 600;
    opacity: 0.85;
} 

.about-us-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 16px;
    position: relative;
}
.about-us-button a {
    display: inline-block;
    background: #d7263d;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(215,38,61,0.15);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    cursor: pointer;
    outline: none;
    font-family: var(--font-body);
}
.about-us-button a:hover, .about-us-button a:focus {
    background: #8a2be2;
    color: #fff;
    box-shadow: 0 4px 16px rgba(138,43,226,0.2);
    transform: scale(1.05);
}
@media (max-width: 900px) {
    .about-us-button {
        margin-top: 20px;
        margin-bottom: 12px;
    }
    .about-us-button a {
        font-size: 1rem;
        padding: 10px 24px;
    }
} 

.about-arrow {
    position: absolute;
    left: -2.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.6rem;
    color: #d7263d;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(215,38,61,0.2);
    animation: arrowBounce 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(30,44,116,0.1));
    display: block;
    pointer-events: none;
}
@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    40% {
        transform: translateY(-50%) translateX(8px);
    }
    60% {
        transform: translateY(-50%) translateX(4px);
    }
}
@media (max-width: 900px) {
    .about-arrow {
        font-size: 2rem;
        left: -2.2rem;
    }
} 

.party-ideas-footer-divider {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, transparent, #e0e0e0, #ebcc34, #e0e0e0, transparent);
    margin-top: 64px;
    margin-bottom: 0;      /* No gap below divider */
    border: none;
    display: block;
} 

.site-footer {
    border-radius: 0 0 32px 32px; /* Only bottom corners rounded */
    margin-top: 0;                /* Remove top margin */
    padding-top: 0;               /* Remove top padding if needed */
} 