/* =========================
   Base & Reset Styles
   ========================= */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1d1d1d;
    line-height: 1.6;
    color: #111;
}

body a {
    color: #fe5411;
}

::selection {
    background-color: red;
    color: white;
}

/* =========================
   Navbar Styles
   ========================= */

.navbar {
    background-color: #111;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /*background-image: url('images/patterns/grid.png');
    background-repeat: repeat;
    background-size: 35%;*/
}

.nav-brand a {
    font-family: 'Fredoka One', cursive, sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 #000, 4px 4px 0 #feb511;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Fredoka One', cursive, sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.7em 1.2em;
    border-radius: 8px;
    display: inline-block;
    min-width: 44px;
    min-height: 44px;
    box-sizing: border-box;
}

.nav-menu a:hover {
    background: #fff;
    color: #111;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

/* =========================
   Hero & Carousel Styles
   ========================= */

.hero {
    margin-top: 80px;
    position: relative;
    height: 800px;
    overflow: hidden;
    /*background: #feb511 url('images/patterns/dots bg 2.png') repeat;*/
    border-bottom: 8px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-color: #feb511;
    background-image: url('images/patterns/dots bg 2.png');
    background-repeat: repeat;

    animation: scroll-bg 90s linear infinite;
}

/* Animation */
@keyframes scroll-bg {
    from { background-position: 0 0; }
    to   { background-position: 1024px 1024px; } /* scrolls by 1 tile */
  }

.carousel {
    height: 100%;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding: 2rem 3rem;
    background: none;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item h2,
.stroke {
    font-family: 'Fredoka One', cursive, sans-serif;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
    -webkit-text-stroke: 1px #000000;
    text-shadow: 2px 2px 0 #000, 4px 4px 0 #feb511;
    letter-spacing: -1px;
}

.carousel-item p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #111;
    background: rgba(255,255,255,0.7);
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 12px;
}

/* =========================
   Button Styles
   ========================= */

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Fredoka One', cursive, sans-serif;
    font-size: 1.1rem;
    box-shadow: 2px 2px 0 #000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    color: #111;
}

/* =========================
   Carousel Controls
   ========================= */

.carousel-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.carousel-controls button {
    background: #111;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 2px 2px 0 #000;
}

.carousel-controls button:hover {
    background: #fff;
    color: #111;
}

/* =========================
   Responsive Styles
   ========================= */

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #111;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        height: 320px;
        padding: 0 0.5rem;
    }
}

/* =========================
   About Section Styles
   ========================= */
.about {
    background: #222;
    color: #fff;
    padding: 3rem 0 2rem 0;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 1rem;
}

.about-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #feb511;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 0.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #fff;
    background: rgba(0,0,0,0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: inline-block;
}

/* =========================
   OC Carousel Section Styles
   ========================= */
.ocs {
    background: #1d1d1d;
    color: #fff;
    padding: 4rem 0 3rem 0;
    text-align: center;
}

.ocs h2 {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
}

.oc-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 480px;
}

.oc-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 480px;
    overflow: hidden;
    position: relative;
    min-height: 420px;
}

.oc-entry {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #222;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    min-width: 380px;
    max-width: 480px;
    min-height: 420px;
    transition: box-shadow 0.3s;
}

.oc-entry.active {
    display: flex;
}

.oc-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #feb511;
    background: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.oc-info h3 {
    font-family: 'Fredoka One', cursive, sans-serif;
    font-size: 2rem;
    margin-bottom: 0.7rem;
    color: #feb511;
    -webkit-text-stroke: 1px #000;
    text-shadow: 2px 2px 0 #000;
}

.oc-info p {
    font-size: 1.2rem;
    color: #fff;
    background: rgba(0,0,0,0.15);
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
}

.oc-prev-btn, .oc-next-btn {
    background: #feb511;
    color: #111;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 2px 2px 0 #000;
    transition: background 0.2s, color 0.2s;
}

.oc-prev-btn:hover, .oc-next-btn:hover {
    background: #fff;
    color: #feb511;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .oc-carousel {
        max-width: 98vw;
    }
    .oc-carousel-track {
        width: 98vw;
        min-width: 0;
    }
    .oc-entry {
        min-width: 60vw;
        max-width: 98vw;
    }
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .oc-carousel {
        flex-direction: column;
        gap: 1.5rem;
        min-height: 0;
    }
    .oc-carousel-track {
        width: 100vw;
        min-width: 0;
        min-height: 0;
    }
    .oc-entry {
        min-width: 80vw;
        max-width: 98vw;
        min-height: 0;
        padding: 2rem 0.5rem 2rem 0.5rem;
    }
    .oc-img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 600px) {
    .about-img {
        width: 90px;
        height: 90px;
    }
    .oc-img {
        width: 90px;
        height: 90px;
    }
    .oc-entry {
        min-width: 98vw;
        max-width: 98vw;
        padding: 1rem 0.2rem 1rem 0.2rem;
    }
    .oc-info h3 {
        font-size: 1.2rem;
    }
    .oc-info p {
        font-size: 0.95rem;
    }
}

/* =========================
   Blog Section Styles
   ========================= */
#blog {
  background: #222;
  color: #fff;
  padding: 5.5rem 0 2rem 0;
  text-align: center;
}
#blog h2 {
  margin-bottom: 2rem;
}
#blog-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.blog-card {
  background: #1d1d1d;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 340px;
  min-width: 240px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog-thumb {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  object-fit: cover;
  max-height: 180px;
}
.blog-card h3 {
  font-family: 'Fredoka One', cursive, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #feb511;
}
.blog-excerpt {
  color: #fff;
  margin-bottom: 1rem;
}

/* Patreon OC List - Larger Outfit Images */
.large-outfit-img {
    width: 140px !important;
    height: 140px !important;
    border-radius: 16px;
    object-fit: cover;
    background: #fff;
    margin-bottom: 0.6rem;
    border: 3px solid #feb511;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.outfit-card {
    width: 150px !important;
    padding: 1.2rem 1.2rem 0.7rem 1.2rem !important;
}
@media (max-width: 900px) {
    .large-outfit-img {
        width: 90px !important;
        height: 90px !important;
    }
    .outfit-card {
        width: 100px !important;
        padding: 0.7rem 0.7rem 0.5rem 0.7rem !important;
    }
}

#chat {
  text-align: center;
  margin: 3rem 0 2rem 0;
}
#chat h2 {
  margin-bottom: 1rem;
  text-align: center;
}
#chat-container {
  display: flex;
  justify-content: center;
} 