﻿/* FlorvynX - Sketch Style CSS */

:root {
    --primary-color: #BC2041;
    --secondary-color: #564C55;
    --light-bg: #f8f5f2;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --border-sketch: #564C55;
}

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

body {
    font-family: 'Patrick Hand', cursive;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { font-size: clamp(1rem, 1.5vw, 1.125rem); }

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

/* Header Styles */
#main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--primary-color);
    border-bottom-style: dashed;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-box {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.125rem;
    position: relative;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.banner-sketch {
    width: 100%;
    position: relative;
}

.banner-sketch::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px dashed rgba(255,255,255,0.4);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.hero-subtitle {
    color: var(--white);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-family: 'Patrick Hand', cursive;
}

.sketch-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    transform: rotate(-1deg);
}

.sketch-btn:hover {
    transform: rotate(1deg) scale(1.05);
    box-shadow: 5px 5px 0px var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-sketch-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.sketch-underline {
    width: 150px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.sketch-underline::before,
.sketch-underline::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background: var(--white);
}

.sketch-underline::before { left: -5px; top: -3.5px; }
.sketch-underline::after { right: -5px; top: -3.5px; }

/* About Section */
.about-section {
    background: var(--white);
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--primary-color);
    font-weight: 600;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border: 4px solid var(--border-sketch);
    border-radius: 10px;
    transform: rotate(-2deg);
    box-shadow: 10px 10px 0px rgba(86, 76, 85, 0.2);
}

/* Materials Grid */
.materials-section {
    background: var(--light-bg);
}

.materials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.material-card {
    flex: 1;
    min-width: 280px;
}

.card-sketch-border {
    background: var(--white);
    padding: 2rem;
    border: 3px solid var(--border-sketch);
    border-radius: 15px;
    position: relative;
    transform: rotate(1deg);
    transition: transform 0.3s;
}

.card-sketch-border:hover {
    transform: rotate(-1deg) translateY(-5px);
    box-shadow: 8px 8px 0px rgba(188, 32, 65, 0.2);
}

.material-icon {
    margin-bottom: 1.5rem;
    text-align: center;
}

.material-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.material-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
    border: 2px solid var(--border-sketch);
}

/* Adhesives Section */
.adhesives-section {
    background: var(--white);
}

.adhesives-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.adhesives-image {
    flex: 1;
}

.adhesives-image img {
    width: 100%;
    height: auto;
    border: 4px solid var(--primary-color);
    border-radius: 15px;
    transform: rotate(2deg);
}

.adhesives-text {
    flex: 1;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tools Section */
.tools-section {
    background: var(--light-bg);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.tool-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border: 2px dashed var(--border-sketch);
    border-radius: 10px;
    transition: all 0.3s;
}

.tool-item:hover {
    transform: translateY(-5px);
    border-style: solid;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.tool-sketch {
    margin-bottom: 1.5rem;
}

.tool-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Events Calendar */
.calendar-section {
    background: var(--white);
}

.events-calendar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Caveat', cursive;
}

.event-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.event-time {
    color: var(--secondary-color);
    font-style: italic;
    display: block;
    margin-top: 0.5rem;
}

/* Training Section */
.training-section {
    background: var(--secondary-color);
    color: var(--white);
}

.training-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.training-text {
    flex: 1;
}

.training-section .section-title {
    color: var(--white);
}

.training-section .sketch-underline {
    background: var(--white);
}

.training-section .sketch-underline::before,
.training-section .sketch-underline::after {
    border-color: var(--white);
}

.training-benefits {
    list-style: none;
    margin: 2rem 0;
}

.training-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.training-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.training-image {
    flex: 1;
}

.training-image img {
    width: 100%;
    height: auto;
    border: 4px solid var(--white);
    border-radius: 15px;
}

/* FAQ Section */
.faq-section {
    background: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-sketch);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* Resources Section */
.resources-section {
    background: var(--white);
    padding: 3rem 0;
}

.resources-links ul {
    list-style: none;
    margin-top: 1.5rem;
}

.resources-links li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.resources-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.resources-links a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px dotted var(--primary-color);
    transition: border-bottom 0.3s;
}

.resources-links a:hover {
    border-bottom-style: solid;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
    padding: 4rem 0;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.newsletter-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--white);
    border-radius: 5px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    background: var(--white);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer */
.main-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px dashed rgba(255,255,255,0.3);
}

/* Contact Form */
.contact-form,
.contact-section form {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--white);
    padding: 2rem;
    border: 3px solid var(--border-sketch);
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-sketch);
    border-radius: 5px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Map Container */
.map-container {
    margin: 3rem 0;
    border: 4px solid var(--border-sketch);
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Business Card */
.business-card {
    background: var(--white);
    padding: 2rem;
    border: 3px dashed var(--primary-color);
    border-radius: 15px;
    margin: 2rem 0;
    transform: rotate(-1deg);
}

.business-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item svg {
    flex-shrink: 0;
}

/* Success Page */
.success-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-content {
    max-width: 600px;
    padding: 3rem;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Policy Pages */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
}

.policy-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.policy-content h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* Paint Categories */
.paint-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.paint-category {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border: 3px solid var(--border-sketch);
    border-radius: 15px;
    transition: all 0.3s;
}

.paint-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.paint-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.paint-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid var(--border-sketch);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-list.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .about-grid,
    .adhesives-content,
    .training-content {
        flex-direction: column;
    }

    .materials-grid,
    .tools-grid {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}