@charset "UTF-8";

/* Import Google Fonts - Chewy for all text */
@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');

/* CSS Variables for Color Palette */
:root {
    --purple-dark: #7D5F7C;
    --purple-light: #A98BB3;
    --sage-green: #A9B79C;
    --gold: #D4A860;
    --beige-pink: #E6D5CE;
    --cream-tan: #E8D5C4;
    --off-white: #FDFAF6;
    --light-cream: #F4F1ED;
    --dark-brown: #3F3D36;
    --brown-button: #8B4C4C;
}

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

/* Body - Chewy font for ALL text */
body {
    font-family: "Chewy", system-ui;
    font-weight: 400;
    font-style: normal;
    background: var(--purple-light);
    color: var(--dark-brown);
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: "Chewy", system-ui;
    font-weight: 400;
    font-style: normal;
}

/* Header Section */
.header-section,
.header {
    background: var(--purple-light);
    padding: 30px 40px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo-text {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: bold;
    color: #000;
    line-height: 1.1;
}

.logo-text .club,
.logo-text .lambs {
    font-size: 36px;
}

/* Subscribe Button */
.subscribe-button {
    background: var(--purple-dark);
    color: white;
    padding: 15px 40px;
    border: 2px solid #5D4F5C;
    font-size: 28px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.3s ease;
}

.subscribe-button:hover {
    background: #6D4F6C;
}

/* Navigation Bar */
.nav-bar {
    background: var(--sage-green);
    padding: 20px;
    margin: 20px 40px;
    border: 3px solid #000;
    border-radius: 5px;
}

.nav-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-bar li {
    display: inline;
}

.nav-bar a {
    color: #000;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-bar a:hover {
    color: var(--purple-dark);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 40px 40px;
    color: var(--dark-brown);
}

.hero h1 {
    font-size: 56px;
    color: var(--purple-dark);
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Polaroid Photo Style */
.polaroid {
    background: white;
    padding: 20px;
    box-shadow: 8px 8px 15px rgba(0,0,0,0.3);
    transform: rotate(-3deg);
    max-width: 550px;
}

.polaroid img {
    width: 100%;
    display: block;
}

.polaroid-caption {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-top: 20px;
    font-family: 'Comic Sans MS', cursive;
}

.polaroid-placeholder {
    width: 100%;
    height: 350px;
    background: var(--beige-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Signup Card */
.signup-card {
    background: var(--off-white);
    padding: 50px 40px;
    box-shadow: 8px 8px 15px rgba(0,0,0,0.3);
    transform: rotate(2deg);
    border-radius: 10px;
}

.signup-card h2 {
    color: var(--brown-button);
    font-size: 48px;
    text-align: center;
    margin: 0 0 20px 0;
    font-family: Georgia, serif;
    line-height: 1.2;
}

.signup-card p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.signup-card input[type="email"] {
    width: 100%;
    padding: 18px;
    font-size: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.signup-card button {
    width: 100%;
    background: var(--brown-button);
    color: white;
    padding: 20px;
    font-size: 32px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-family: Georgia, serif;
    font-weight: bold;
}

.signup-card button:hover {
    background: #7A3F3F;
}

/* Winner Cards */
.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.winner-card {
    background: white;
    padding: 20px;
    box-shadow: 8px 8px 15px rgba(0,0,0,0.3);
    transform: rotate(-2deg);
}

.winner-card:nth-child(even) {
    transform: rotate(2deg);
}

.winner-photo,
.winner-image {
    width: 100%;
    height: 300px;
    background: var(--beige-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #999;
    background-size: cover;
    background-position: center;
}

.winner-image {
    height: 400px;
    position: relative;
}

.winner-card h3 {
    font-size: 32px;
    color: var(--dark-brown);
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.winner-card .bloodline {
    font-weight: bold;
    font-size: 18px;
    color: var(--purple-dark);
    margin-bottom: 10px;
}

.winner-card .award {
    font-style: italic;
    color: var(--purple-dark);
    font-size: 20px;
    margin-top: 15px;
}

/* Gingham Background Pattern */
.gingham-bg {
    background-image: 
        linear-gradient(45deg, var(--sage-green) 25%, transparent 25%),
        linear-gradient(-45deg, var(--sage-green) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--sage-green) 75%),
        linear-gradient(-45deg, transparent 75%, var(--sage-green) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    background-color: white;
    min-height: 100vh;
}

.gingham-purple-bg {
    background-image: 
        linear-gradient(45deg, var(--purple-light) 25%, transparent 25%),
        linear-gradient(-45deg, var(--purple-light) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--purple-light) 75%),
        linear-gradient(-45deg, transparent 75%, var(--purple-light) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    background-color: #E0D8E8;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Paper Card (for landing page) */
.paper-card {
    background: var(--off-white);
    border: 4px solid var(--brown-button);
    border-radius: 10px;
    padding: 60px 50px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Tape Decorations */
.tape {
    position: absolute;
    width: 80px;
    height: 40px;
    background: var(--cream-tan);
    opacity: 0.8;
}

.tape-tl {
    top: -20px;
    left: 50px;
    transform: rotate(-8deg);
}

.tape-br {
    bottom: -20px;
    right: 50px;
    transform: rotate(8deg);
}

/* Logo */
.logo {
    text-align: center;
    margin-bottom: 40px;
}

/* Headline */
.headline {
    text-align: center;
    color: var(--brown-button);
    font-size: 56px;
    font-weight: bold;
    font-family: Georgia, serif;
    margin: 30px 0 15px;
    line-height: 1.1;
}

.subheadline {
    text-align: center;
    font-size: 26px;
    color: var(--dark-brown);
    margin-bottom: 50px;
}

/* Feature Cards */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-card {
    background: white;
    padding: 20px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    transform: rotate(-2deg);
    width: 280px;
}

.feature-card:nth-child(2) {
    transform: rotate(1deg);
}

.feature-card:nth-child(3) {
    transform: rotate(-1deg);
}

.feature-box {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-box.purple {
    background: var(--purple-light);
}

.feature-box.green {
    background: var(--sage-green);
}

.feature-title {
    font-family: 'Comic Sans MS', cursive;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.feature-subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

/* Form Section */
.form-section {
    background: var(--gold);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.form-title {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.form-section input,
.form-box input {
    width: 100%;
    padding: 18px 20px;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-section button {
    width: 100%;
    background: var(--purple-dark);
    color: white;
    padding: 20px;
    font-size: 42px;
    font-family: Georgia, serif;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

.form-section button:hover {
    background: #6D4F6C;
}

/* Content Sections */
.content {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.left-section h1 {
    color: var(--brown-button);
    font-size: 52px;
    font-family: Georgia, serif;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Form Box */
.form-box {
    background: var(--purple-light);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
}

.form-box h2 {
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

.form-box label {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.form-box button {
    width: 100%;
    background: var(--brown-button);
    color: white;
    padding: 20px;
    font-size: 32px;
    font-family: Georgia, serif;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

.form-box button:hover {
    background: #7A3F3F;
}

/* Benefits Box */
.benefits-box {
    background: white;
    border: 3px solid var(--sage-green);
    padding: 40px;
    border-radius: 10px;
    text-align: left;
}

.benefits-box h3 {
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 20px;
    text-align: center;
}

.benefits-box ul {
    list-style: none;
    padding: 0;
}

.benefits-box li {
    padding: 15px 0;
    font-size: 20px;
    border-bottom: 2px solid var(--beige-pink);
    font-weight: bold;
}

.benefits-box li:last-child {
    border-bottom: none;
}

/* Paper Note (Thank You Page) */
.paper-note {
    background: var(--off-white);
    border: 3px solid var(--dark-brown);
    max-width: 1000px;
    margin: 60px auto;
    padding: 60px 40px;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.2);
    position: relative;
}

/* Checkmark Icon */
.checkmark {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.checkmark::after {
    content: '✓';
    color: white;
    font-size: 90px;
    font-weight: bold;
}

/* Sheep Graphics */
.sheep-graphics {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: 40px;
    font-size: 42px;
}

.sheep {
    font-size: 42px;
}

.fence {
    font-size: 36px;
}

/* Cards */
.card,
.content-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 8px 8px 15px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.card h2,
.content-card h2 {
    font-size: 36px;
    color: var(--purple-dark);
    font-family: Georgia, serif;
    margin-bottom: 25px;
}

.card h3,
.content-card h3 {
    font-size: 24px;
    color: var(--purple-dark);
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-card p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Photo Placeholder */
.photo-placeholder {
    width: 100%;
    height: 350px;
    background: var(--beige-pink);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--dark-brown);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid var(--sage-green);
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.form-group textarea {
    resize: vertical;
}

button {
    cursor: pointer;
    transition: background 0.3s ease;
}

/* CTA Sections */
.cta-section {
    background: var(--beige-pink);
    text-align: center;
    padding: 60px 40px;
    margin: 60px 40px;
    border-radius: 15px;
}

.cta-section h2 {
    font-size: 42px;
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.cta-button {
    display: inline-block;
    background: var(--brown-button);
    color: white;
    padding: 20px 50px;
    font-size: 28px;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #7A3F3F;
}

.back-button {
    display: inline-block;
    background: var(--sage-green);
    color: var(--dark-brown);
    padding: 15px 30px;
    font-size: 22px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: bold;
}

/* Values/Philosophy Sections */
.values-section,
.philosophy-section,
.faq-section,
.terms-section,
.legacy-section {
    background: var(--sage-green);
    padding: 60px 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.values-section h2,
.philosophy-section h2,
.faq-section h2,
.terms-section h2,
.legacy-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-brown);
    margin-bottom: 40px;
    font-family: Georgia, serif;
}

.values-grid,
.philosophy-grid,
.legacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.legacy-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 40px auto;
}

.value-item {
    text-align: center;
}

.value-item h3 {
    font-size: 28px;
    color: var(--purple-dark);
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.value-item p {
    font-size: 18px;
    line-height: 1.6;
}

/* Lists */
.benefits-list,
.achievements,
.legacy-list {
    list-style: none;
    padding: 0;
}

.benefits-list li,
.achievements li,
.legacy-list li {
    padding: 12px 0;
    font-size: 20px;
    border-bottom: 1px solid var(--beige-pink);
}

.achievements li,
.legacy-list li {
    border-bottom: none;
    padding: 8px 0;
    font-size: 18px;
}

.benefits-list li:before,
.achievements li:before,
.legacy-list li:before {
    content: "✓ ";
    color: var(--purple-dark);
    font-weight: bold;
    margin-right: 10px;
}

/* Sale/Sire/Archive specific */
.sale-info,
.intro-card {
    background: var(--beige-pink);
    max-width: 800px;
    margin: 40px auto;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.sale-info h2,
.intro-card h2 {
    font-size: 42px;
    color: var(--dark-brown);
    font-family: Georgia, serif;
    margin-bottom: 30px;
}

.sale-info p,
.intro-card p {
    font-size: 24px;
    margin: 15px 0;
}

.intro-card p {
    font-size: 20px;
    line-height: 1.6;
}

/* Lamb Cards */
.lambs-grid,
.sires-grid,
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.lamb-card,
.sire-card,
.archive-card {
    background: white;
    padding: 20px;
    box-shadow: 8px 8px 15px rgba(0,0,0,0.3);
    transform: rotate(-2deg);
    border-radius: 10px;
}

.lamb-card:nth-child(even),
.sire-card:nth-child(even),
.archive-card:nth-child(even) {
    transform: rotate(2deg);
}

.lamb-photo,
.sire-photo,
.archive-photo {
    width: 100%;
    height: 300px;
    background: var(--beige-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #999;
}

.lamb-card h3,
.sire-card h3,
.archive-card h3 {
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.lamb-card p,
.sire-card p,
.archive-card p {
    font-size: 18px;
    margin: 8px 0;
}

.price {
    font-size: 32px;
    color: var(--purple-dark);
    font-weight: bold;
    margin: 20px 0;
}

.inquire-btn {
    display: inline-block;
    background: var(--brown-button);
    color: white;
    padding: 12px 30px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 15px;
}

.sire-card .award,
.archive-card .award {
    font-style: italic;
    color: var(--purple-dark);
    font-size: 18px;
    margin-top: 15px;
}

/* Featured Sire Section */
.featured-sire {
    background: linear-gradient(135deg, var(--beige-pink) 0%, var(--sage-green) 100%);
    padding: 60px 40px;
    margin: 40px;
    border-radius: 15px;
}

.featured-sire h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-brown);
    margin-bottom: 40px;
    font-family: Georgia, serif;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-photo {
    width: 100%;
    height: 400px;
    background: var(--beige-pink);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.featured-info h2 {
    font-size: 42px;
    color: var(--purple-dark);
    margin-bottom: 20px;
}

.featured-info h3 {
    font-size: 26px;
    color: var(--dark-brown);
    margin: 30px 0 15px;
}

.featured-info p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Legacy Cards */
.legacy-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}

.legacy-card h3 {
    font-size: 26px;
    color: var(--purple-dark);
    text-align: center;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 24px;
    color: var(--purple-dark);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 18px;
    line-height: 1.6;
}

/* Terms Sections */
.terms-section h3 {
    font-size: 26px;
    color: var(--purple-dark);
    margin-top: 30px;
    margin-bottom: 10px;
}

.terms-section p {
    font-size: 18px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--sage-green);
    text-align: center;
    padding: 20px;
    margin-top: 60px;
}

.footer p {
    color: var(--dark-brown);
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-grid,
    .content,
    .featured-grid,
    .philosophy-grid,
    .legacy-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-bar ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-section,
    .header {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 40px;
    }
    
    .subheadline {
        font-size: 20px;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .form-section button {
        font-size: 32px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
}