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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: lowercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6366f1;
}

.nav-link.active {
    color: #6366f1;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #6366f1;
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background-color: #fff;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Column */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Pawsonality Section */
.pawsonality-section {
    position: relative;
}

.pawsonality-tab {
    position: absolute;
    top: -15px;
    left: 20px;
    z-index: 2;
}

.pawsonality-tab img {
    height: 30px;
    width: auto;
}

.pawsonality-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.dog-info {
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.info-row:last-of-type {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.value {
    color: #666;
    font-size: 14px;
}

.curiosity-scale {
    display: flex;
    align-items: center;
}

.scale-numbers {
    font-size: 12px;
    color: #999;
    letter-spacing: 2px;
}

.highlighted {
    color: #6366f1;
    font-weight: 700;
    font-size: 14px;
}

button {
    cursor: pointer;
}

.adopt-button, .rehome-button {
    background-color: #d97706;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.adopt-button:hover {
    background-color: #b45309;
    cursor: pointer;
}

.rehome-button {
    background-color: #6366f1;
}

.rehome-button:hover {
    background-color: #4f46e5;
    cursor: pointer;
}

/* Why I'm Special Section */
.special-section {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.special-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.special-header h2 {
    color: #6366f1;
    font-size: 20px;
    font-weight: 600;
    text-transform: lowercase;
}

.dna-graphic {
    display: flex;
    align-items: center;
}

.dna-strand {
    display: flex;
    gap: 4px;
    align-items: center;
}

.dna-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dna-dot.purple {
    background-color: #6366f1;
}

.dna-dot.yellow {
    background-color: #fbbf24;
}

.breed-breakdown {
    margin-bottom: 20px;
}

.breed-item {
    margin-bottom: 15px;
}

.breed-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.breed-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.blurred-text {
    filter: blur(5px);
}

.breed-percentage {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.breed-bar {
    height: 4px;
    border-radius: 2px;
    background-color: #f0f0f0;
    width: 100%;
    position: relative;
}

.breed-bar.yellow {
    background-color: #f0f0f0;
}

.breed-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #fbbf24;
    border-radius: 2px;
}

.breed-item:nth-child(1) .breed-bar::before {
    width: 50%;
}

.breed-item:nth-child(2) .breed-bar::before {
    width: 20.9%;
}

.breed-item:nth-child(3) .breed-bar::before {
    width: 16%;
}

.breed-item:nth-child(4) .breed-bar::before {
    width: 13.1%;
}

.dog-peek {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.dog-peek img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-section h2 {
    color: #6366f1;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: lowercase;
}

.story-section p {
    color: #333;
    line-height: 1.7;
    font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .right-column {
        order: -1;
    }
    
    .pawsonality-card {
        padding: 30px 20px 25px;
    }
    
    .special-section {
        padding: 25px 20px;
    }
    
    .special-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dna-graphic {
        align-self: flex-end;
    }
    
    .dog-peek {
        width: 60px;
        height: 60px;
        bottom: -15px;
        right: -15px;
    }
    
    .hero-image img {
        max-height: 300px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .breed-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .pawsonality-card {
        padding: 25px 15px 20px;
    }
    
    .special-section {
        padding: 20px 15px;
    }
    
    .hero-image img {
        max-height: 250px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
} 