/* ===========================================
   RX: RYEN! - MASTER STYLESHEET
   =========================================== */

/* ===========================================
   RESET & BASE STYLES
   =========================================== */

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

body {
    font-family: 'Comic Neue', cursive;
    font-weight: 400;
    font-style: normal;
    background-color: #f9f9f9;
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */

/* UNUSED - Commented out for future use
.comic-neue-regular {
    font-family: "Comic Neue", cursive;
    font-weight: 400;
    font-style: normal;
}

.comic-neue-bold {
    font-family: "Comic Neue", cursive;
    font-weight: 700;
    font-style: normal;
}
*/

.cursive {
    font-family: 'Playwrite AU SA', cursive;
    font-style: normal;
    font-weight: 400;
}

/* ===========================================
   HEADER
   =========================================== */

header {
    font-family: 'DynaPuff', sans-serif;
    background: linear-gradient(135deg, #d14d72 0%, #e487a8 50%, #f0a4c1 100%);
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    margin: 20px 20px 10px 20px;
    box-shadow: 0 4px 15px rgba(209, 77, 114, 0.3);
}

header h1 {
    color: white;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
}

/* ===========================================
   NAVIGATION
   =========================================== */

nav {
    font-family: 'DynaPuff', sans-serif;
    background: linear-gradient(135deg, #d14d72 0%, #e487a8 50%, #f0a4c1 100%);
    padding: 10px 0;
    border-radius: 20px;
    margin: 10px 20px 20px 20px;
    box-shadow: 0 4px 15px rgba(209, 77, 114, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===========================================
   DROPDOWN MENUS
   =========================================== */

nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d95f82 0%, #e89bb3 100%);
    min-width: 200px;
    flex-direction: column;
    border-radius: 15px;
    margin-top: 0;
    box-shadow: 0 6px 20px rgba(209, 77, 114, 0.4);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

nav ul li:hover ul {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

nav ul li ul:hover {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

nav ul li ul li {
    width: 100%;
}

nav ul li ul li a {
    padding: 12px 20px;
    border-radius: 0;
}

nav ul li ul li:first-child a {
    border-radius: 15px 15px 0 0;
}

nav ul li ul li:last-child a {
    border-radius: 0 0 15px 15px;
}

nav ul li ul li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: none;
}

/* ===========================================
   BODY CONTENT - UNUSED
   =========================================== */

/* UNUSED - Commented out for future use
.content {
    padding: 40px;
    text-align: center;
}

.content h1 {
    color: #ff9a9e;
    font-family: 'Quicksand', sans-serif;
}
*/

/* ===========================================
   COLUMN & CARD PAGES - UNUSED
   =========================================== */

/* UNUSED - Commented out for future use
.colpage-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.colpage-header {
    text-align: center;
    margin-bottom: 50px;
}

.colpage-header h1 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.colpage-header p {
    color: #666;
    font-size: 1.2em;
}

.columns-wrapper {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.column {
    background: linear-gradient(135deg, #d14d72 0%, #e487a8 50%, #f0a4c1 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(209, 77, 114, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(209, 77, 114, 0.4);
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.card:hover {
    transform: scale(1.02);
}

.card-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.card-image-wrapper:hover img {
    transform: scale(1.05);
}

.card-label {
    padding: 20px;
    text-align: center;
    font-family: 'DynaPuff', sans-serif;
    font-size: 1.3em;
    color: #d14d72;
    font-weight: bold;
}

.card-label a {
    color: #d14d72;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.card:hover .card-label {
    color: black;
    opacity: 0.8;
}

.card-description {
    padding: 0 20px 20px;
    text-align: center;
    color: #24010c;
    line-height: 1.6;
    text-decoration: none;
}

.column-label {
    font-family: 'DynaPuff', sans-serif;
    color: white;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: -20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.column-label a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.column-label a:hover {
    opacity: 0.8;
    color: black;
}
*/

/* ===========================================
   BULLET STYLING
   =========================================== */

/* Remove emojis for lists with class "no-bullets" */
ul.no-bullets {
    list-style-type: none;
    padding-left: 0px;
}

ul.no-bullets li {
    padding-left: 0;
    padding-bottom: 0;
}

ul.no-bullets li::before {
    content: none;
}

/* Rotating emoji bullets */
ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    padding-left: 35px;
    padding-bottom: 10px;
    position: relative;
}

/* First emoji */
li:nth-child(4n+1)::before {
    content: "⭐";
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

/* Second emoji */
li:nth-child(4n+2)::before {
    content: "🎀";
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

/* Third emoji */
li:nth-child(4n+3)::before {
    content: "✨";
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

/* Fourth emoji */
li:nth-child(4n+4)::before {
    content: "💕";
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

/* ===========================================
   MASTER SECTIONS
   =========================================== */

.master-section {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 40px;
}

.master-title {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 3em;
    text-align: center;
    margin-bottom: 20px;
}

.divider-bar {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #d14d72 20%, #e487a8 50%, #d14d72 80%, transparent 100%);
    margin-bottom: 40px;
}

/* ===========================================
   SECONDARY SECTIONS
   =========================================== */

.secondary-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
}

.secondary-title {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 2em;
    margin-bottom: 15px;
}

.secondary-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d14d72 0%, #e487a8 50%, #f0a4c1 100%);
    margin-bottom: 25px;
}

.section-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

/* ===========================================
   PHOTO GRID
   =========================================== */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto;
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

.photo-grid-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(209, 77, 114, 0.3);
}

.photo-grid-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
}

/* ===========================================
   INFO TABLE
   =========================================== */

.info-table {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    border-collapse: collapse;
    background: linear-gradient(135deg, #fef3f5 0%, #fef8f9 100%);
    border-radius: 12px;
    overflow: hidden;
}

.info-table th {
    background: linear-gradient(135deg, #d14d72 0%, #e487a8 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-family: 'DynaPuff', sans-serif;
    font-size: 0.9em;
}

.info-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0e6e9;
    color: #333;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover {
    background: rgba(209, 77, 114, 0.05);
}

/* ===========================================
   NAVIGATION ANCHOR OFFSET
   =========================================== */

section[id] {
    scroll-margin-top: 100px;
}

/* ===========================================
   SECTION NAVIGATION BUTTONS (NAV3)
   =========================================== */

.nav3-button {
    padding: 12px 24px;
    border: 2px solid;
    background: transparent;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'DynaPuff', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav3-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nav3-pink {
    border-color: #ff8fab;
    color: #ff8fab;
}

.nav3-orange {
    border-color: #ffb366;
    color: #ffb366;
}

.nav3-yellow {
    border-color: #ffd966;
    color: #ffd966;
}

.nav3-mint {
    border-color: #66d9a0;
    color: #66d9a0;
}

.nav3-blue {
    border-color: #66b3ff;
    color: #66b3ff;
}

.nav3-lavender {
    border-color: #b366ff;
    color: #b366ff;
}

.nav3-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ===========================================
   PROJECT ITEMS (Side by side layout)
   =========================================== */

.project-item {
    max-width: 1200px;
    margin: 25px auto;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 25px;
    align-items: start;
}

@media (max-width: 968px) {
    .project-item {
        grid-template-columns: 1fr;
    }
}

.project-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.project-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
}

.project-image:hover .overlay {
    transform: translateY(0);
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-title {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.project-text {
    font-size: 1.05em;
    color: #333;
}

.project-text b {
    color: #d14d72;
}

/* ===========================================
   SILLY GRID (for fun items)
   =========================================== */

.silly-grid-container {
    max-width: 1200px;
    margin: 25px auto;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.silly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.silly-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.silly-item:hover {
    transform: scale(1.05);
}

.silly-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.silly-item:hover .overlay {
    transform: translateY(0);
}

/* ===========================================
   OVERLAY (for hover effects)
   =========================================== */

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(209, 77, 114, 0.95), rgba(228, 135, 168, 0.9));
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 0.95em;
    line-height: 1.4;
    text-align: center;
}

/* ===========================================
   CURRENTLY & UPDATES SECTIONS
   =========================================== */

.currently {
    max-width: 1400px;
    margin: 40px auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 968px) {
    .currently {
        grid-template-columns: 1fr;
    }
}

.currently-container,
.updates-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.currently h2,
.updates-container h2 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
}

.currently-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.currently-item {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #fef3f5 0%, #fef8f9 100%);
    border-radius: 12px;
    border-left: 4px solid #d14d72;
    transition: transform 0.2s ease;
}

.currently-item:hover {
    transform: translateX(5px);
}

.currently-label {
    font-weight: bold;
    color: #d14d72;
    min-width: 120px;
    font-family: 'DynaPuff', sans-serif;
    font-size: 0.9em;
}

.currently-value {
    color: #333;
    line-height: 1.5;
}

.currently-value a,
.event-text a,
.update-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700;
}

.currently-value a:hover,
.event-text a:hover,
.update-text a:hover {
    color: #d14d72;
    text-decoration: none;
    font-weight: 700;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.update-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #fef3f5 0%, #fef8f9 100%);
    border-radius: 12px;
    border-left: 4px solid #e487a8;
    transition: transform 0.2s ease;
}

.update-item:hover {
    transform: translateX(5px);
}

.update-date {
    font-weight: bold;
    color: #d14d72;
    min-width: 90px;
    font-family: 'DynaPuff', sans-serif;
    font-size: 0.9em;
}

.update-date a {
    color: #d14d72;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.update-date a:hover {
    color: black;
    opacity: 0.8;
}

.update-text {
    color: #333;
    line-height: 1.5;
}

/* ===========================================
   EVENTS & PHOTO SECTION
   =========================================== */

.events-photo {
    max-width: 1400px;
    margin: 40px auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 968px) {
    .events-photo {
        grid-template-columns: 1fr;
    }
}

.events-container,
.photo-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.events-container h2,
.photo-container h2 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
}

.photo-container h2 a {
    color: #d14d72;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.photo-container h2 a:hover {
    opacity: 0.8;
    color: black;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #fef3f5 0%, #fef8f9 100%);
    border-radius: 12px;
    border-left: 4px solid #f0a4c1;
    transition: transform 0.2s ease;
}

.event-item:hover {
    transform: translateX(5px);
}

.event-date {
    font-weight: bold;
    color: #d14d72;
    min-width: 120px;
    font-family: 'DynaPuff', sans-serif;
    font-size: 0.9em;
}

.event-text {
    color: #333;
    line-height: 1.5;
}

.photo-frame {
    background: linear-gradient(135deg, #fef3f5 0%, #fef8f9 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.photo-frame img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    background: #f0f0f0;
    margin-bottom: 15px;
}

.photo-caption {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* ===========================================
   ABOUT SECTION
   =========================================== */

.about {
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about h2 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
}

.about p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

/* ===========================================
   HIGHLIGHTS SECTION - UNUSED
   =========================================== */

/* UNUSED - Commented out for future use
.highlights {
    max-width: 1400px;
    margin: 40px auto;
    padding: 40px 20px;
}

.highlights h2 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(209, 77, 114, 0.3);
}

.highlight-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.highlight-card p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}
*/

/* ===========================================
   FEATURED WORK
   =========================================== */

.featured {
    max-width: 1400px;
    margin: 40px auto;
    padding: 40px 20px;
}

.featured h2 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
}

.featured h2 a {
    color: #d14d72;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.featured h2 a:hover {
    opacity: 0.8;
    color: black;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* UNUSED - Commented out for future use
.featured-item {
    background: linear-gradient(135deg, #d14d72 0%, #e487a8 50%, #f0a4c1 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(209, 77, 114, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(209, 77, 114, 0.4);
}

.featured-image {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    color: #ddd;
    overflow: hidden;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.featured-content {
    padding: 30px;
    background: white;
}

.featured-content h3 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.featured-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
*/

.featured-link {
    display: inline-block;
    background: linear-gradient(135deg, #d14d72 0%, #e487a8 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.featured-link:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(209, 77, 114, 0.4);
}

/* ===========================================
   CTA SECTION
   =========================================== */

.cta {
    background: linear-gradient(135deg, #d14d72 0%, #e487a8 50%, #f0a4c1 100%);
    padding: 80px 40px;
    text-align: center;
    border-radius: 20px;
    margin: 40px 20px;
    box-shadow: 0 4px 15px rgba(209, 77, 114, 0.3);
}

.cta h2 {
    font-family: 'DynaPuff', sans-serif;
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta p {
    color: white;
    font-size: 1.3em;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #d14d72;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===========================================
   FOOTER
   =========================================== */

footer {
    background: white;
    padding: 40px;
    text-align: center;
    margin: 40px 20px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

footer p {
    color: #666;
    font-size: 1em;
}

/* ===========================================
   PROJECT SECTIONS
   =========================================== */

.project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.project-section {
    margin-bottom: 80px;
    scroll-margin-top: 80px;
    padding: 40px 20px;
}

.project-section h2 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 2.2em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0a4c1;
}

.project-description {
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.project-description p {
    margin-bottom: 15px;
}

/* ===========================================
   MATERIALS TABLE
   =========================================== */

.materials-section {
    margin: 30px 0;
}

.materials-section h3 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.materials-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(209, 77, 114, 0.1);
}

.materials-table table {
    width: 100%;
    border-collapse: collapse;
}

.materials-table th {
    background: linear-gradient(135deg, #d14d72 0%, #e487a8 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-family: 'DynaPuff', sans-serif;
    font-size: 1em;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.materials-table th:last-child {
    border-right: none;
}

.materials-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.materials-table td:last-child {
    border-right: none;
}

.materials-table tr:last-child td {
    border-bottom: none;
}

.materials-table tr:hover {
    background-color: #fff5f7;
}

.materials-table a {
    color: #d14d72;
    text-decoration: none;
    font-weight: bold;
}

.materials-table a:hover {
    text-decoration: none;
    color: black;
}

/* ===========================================
   PHOTO GALLERY
   =========================================== */

.photo-gallery-section {
    margin: 30px 0;
}

.photo-gallery-section h3 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.photo-gallery {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px 10px;
    background: linear-gradient(135deg, rgba(209, 77, 114, 0.05) 0%, rgba(240, 164, 193, 0.05) 100%);
    border-radius: 15px;
    scroll-behavior: smooth;
}

.photo-gallery::-webkit-scrollbar {
    height: 10px;
}

.photo-gallery::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.photo-gallery::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d14d72 0%, #e487a8 100%);
    border-radius: 10px;
}

.photo-gallery::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c03d5f 0%, #d67795 100%);
}

.gallery-item {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(209, 77, 114, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(209, 77, 114, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.placeholder-text {
    padding: 20px;
    text-align: center;
}

/* ===========================================
   CONTACT PAGE
   =========================================== */

.contact-shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
}

.page-title h1 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.contact-section {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #d14d72 0%, #e487a8 50%, #f0a4c1 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(209, 77, 114, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.contact-section h2 {
    font-family: 'DynaPuff', sans-serif;
    color: white;
    font-size: 2em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.contact-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(209, 77, 114, 0.3);
}

.contact-item h3 {
    font-family: 'DynaPuff', sans-serif;
    color: #d14d72;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}

.contact-item p {
    font-size: 1.1em;
    text-align: center;
    color: #333;
    line-height: 1.6;
}

.contact-item a {
    color: #d14d72;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.7;
}
