/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Rocky's Creative - CSS Stylesheet */

/* Color Variables */
:root {
    --baby-blue: #B8E6F0;
    --sky-blue: #89CFF0;
    --white: #ffffff;
    --cream: #FDFEFF;
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --accent: #7FB3D5;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Palatino', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(184, 230, 240, 0.03) 35px, rgba(184, 230, 240, 0.03) 70px);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(184, 230, 240, 0.3);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--baby-blue);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8em;
    color: var(--sky-blue);
    font-weight: normal;
    font-family: 'Brush Script MT', cursive;
    text-shadow: 2px 2px 0px rgba(184, 230, 240, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.05em;
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    background-color: var(--baby-blue);
    color: var(--text-dark);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--sky-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--white) 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px dotted var(--sky-blue);
}

.hero h2 {
    font-size: 2.8em;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: normal;
}

.tagline {
    font-size: 1.4em;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.15em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-dark);
}

.cta-button {
    display: inline-block;
    background-color: var(--sky-blue);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(137, 207, 240, 0.4);
    border: 3px solid var(--sky-blue);
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--sky-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(137, 207, 240, 0.6);
}

/* About/Features Section */
.about {
    padding: 70px 0;
    background-color: var(--white);
}

.about h2 {
    text-align: center;
    font-size: 2.3em;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
    font-weight: normal;
}

.about h2::after {
    content: '✦';
    display: block;
    font-size: 0.5em;
    color: var(--baby-blue);
    margin-top: 15px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background-color: var(--cream);
    border-radius: 15px;
    border: 3px dashed var(--baby-blue);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(184, 230, 240, 0.4);
    border-style: solid;
}

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

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--sky-blue);
    font-weight: normal;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Social Section */
.social {
    padding: 70px 0;
    background: linear-gradient(to bottom, var(--white), var(--baby-blue));
    text-align: center;
}

.social h2 {
    font-size: 2.3em;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: normal;
}

.social > .container > p {
    font-size: 1.15em;
    margin-bottom: 40px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-button {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.15em;
    transition: all 0.3s ease;
    border: 3px solid;
    font-weight: bold;
}

.instagram {
    background-color: var(--white);
    color: #E4405F;
    border-color: #E4405F;
}

.instagram:hover {
    background-color: #E4405F;
    color: var(--white);
    transform: scale(1.05);
}

.substack {
    background-color: var(--white);
    color: #FF6719;
    border-color: #FF6719;
}

.substack:hover {
    background-color: #FF6719;
    color: var(--white);
    transform: scale(1.05);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--baby-blue) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: normal;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.95;
}

/* Schedule/Events */
.schedule {
    padding: 60px 0;
    background-color: var(--white);
}

.event-card {
    display: flex;
    gap: 30px;
    background-color: var(--cream);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    border-left: 6px solid var(--baby-blue);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(184, 230, 240, 0.4);
    border-left-color: var(--sky-blue);
}

.event-date {
    background: linear-gradient(135deg, var(--sky-blue), var(--baby-blue));
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 100px;
    height: fit-content;
}

.event-date .month {
    display: block;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: bold;
}

.event-date .day {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    font-size: 1.6em;
    color: var(--sky-blue);
    margin-bottom: 10px;
    font-weight: normal;
}

.event-details .time {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 10px;
}

.event-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.tag {
    display: inline-block;
    background-color: var(--baby-blue);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.info-box {
    background: linear-gradient(to right, var(--baby-blue), var(--sky-blue));
    color: var(--white);
    padding: 35px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(137, 207, 240, 0.3);
}

.info-box h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: normal;
}

.info-box p {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Blog Section */
.blog {
    padding: 60px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2em;
    color: var(--sky-blue);
    margin-bottom: 35px;
    text-align: center;
    font-weight: normal;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--baby-blue);
    margin: 15px auto 0;
    border-radius: 2px;
}

.blog-post {
    background-color: var(--cream);
    padding: 40px;
    margin-bottom: 35px;
    border-radius: 12px;
    border: 2px solid var(--baby-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.post-meta {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95em;
    margin-bottom: 10px;
}

.blog-post h4 {
    font-size: 1.8em;
    color: var(--sky-blue);
    margin-bottom: 20px;
    font-weight: normal;
}

.blog-post p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Gallery Section */
.gallery-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 3px dotted var(--baby-blue);
}

.gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid var(--baby-blue);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(184, 230, 240, 0.5);
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: var(--text-dark);
    font-weight: bold;
}

.placeholder-text {
    text-align: center;
    padding: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.caption {
    padding: 20px;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

footer p {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero h2 {
        font-size: 2em;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        width: 100%;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }
    
    .logo {
        font-size: 1.5em;
    }
    
    nav a {
        font-size: 0.95em;
        padding: 5px 10px;
    }
}