/* 
   Eurocoons Maine Coon Cattery - Pure Custom CSS
   Dark Luxury Aesthetic
*/

:root {
    --black: #050505;
    --charcoal: #121212;
    --dark-gray: #1E1E1E;
    --gold: #C5A059;
    --gold-hover: #D4B06A;
    --silver: #E0E0E0;
    --white: #FFFFFF;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--silver);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-3 { margin-top: 3rem; }
.py-section { padding: 80px 0; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--black);
}

.btn-solid {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-solid:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.logo span {
    color: var(--gold);
}

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

.nav-links a {
    color: var(--silver);
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Dropdown */
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--charcoal);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.8);
    z-index: 1;
    border: 1px solid rgba(197, 160, 89, 0.2);
}
.dropdown-content a {
    color: var(--silver);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dropdown-content a:hover {
    background-color: var(--black);
    color: var(--gold);
}
.dropdown:hover .dropdown-content {
    display: block;
}

.mobile-menu-btn {
    display: none;
    color: var(--gold);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--black);
    flex-direction: column;
    padding: 40px 20px;
    z-index: 999;
}
.mobile-nav.open {
    display: flex;
}
.mobile-nav a {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

@media (max-width: 992px) {
    .nav-links, .header-cta { display: none; }
    .mobile-menu-btn { display: block; }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.hero-subtitle {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 30px;
}
.hero p {
    font-size: 18px;
    color: var(--silver);
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .hero-buttons { flex-direction: column; }
}

/* Section Dividers */
.gold-divider {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 30px auto;
}

/* Content Sections */
.bg-dark { background-color: var(--black); }
.bg-charcoal { background-color: var(--charcoal); }

.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
}
.split-text { flex: 1; }
.split-image { flex: 1; }
.split-image img {
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 10px;
}
@media (max-width: 992px) {
    .split-section { flex-direction: column; }
}

/* Kitten Cards */
.kitten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.kitten-card {
    background-color: var(--charcoal);
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.kitten-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}
.kitten-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}
.kitten-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.kitten-card:hover .kitten-img-wrapper img {
    transform: scale(1.05);
}
.kitten-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--black);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 5px 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.kitten-status.available { color: #4ade80; border-color: #4ade80; }
.kitten-status.reserved { color: #facc15; border-color: #facc15; }
.kitten-info {
    padding: 30px;
    text-align: center;
}
.kitten-name {
    font-size: 24px;
    margin-bottom: 10px;
}
.kitten-details {
    color: var(--silver);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Footer */
.main-footer {
    background-color: var(--black);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding: 60px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    color: #666;
    font-size: 12px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--silver);
    font-size: 14px;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--black);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--white);
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

/* Custom Lists */
.gold-list {
    list-style: none;
    text-align: left;
}
.gold-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--silver);
}
.gold-list li::before {
    content: '★';
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
}
