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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #FF6B6B;
    --cat-color: #FFA500;
    --dark: #2C1810;
    --light: #FFF8F0;
    --cream: #F5E6D3;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 30px var(--shadow-dark);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--accent-color);
}

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #FF6B6B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-location {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-opening {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, var(--cat) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.7s backwards, pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.8s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    background: var(--light);
}

.floating-cats {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cat-emoji {
    position: absolute;
    font-size: 3rem;
    opacity: 0.6;
    animation: floatAround 20s infinite ease-in-out;
}

.cat-emoji:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cat-emoji:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.cat-emoji:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(10deg);
    }
    50% {
        transform: translate(0, -100px) rotate(-10deg);
    }
    75% {
        transform: translate(-50px, -50px) rotate(5deg);
    }
}

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

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '🐾';
    display: block;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 300;
}

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

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.about-card:nth-child(2) .card-icon {
    animation-delay: 0.3s;
}

.about-card:nth-child(3) .card-icon {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card p {
    color: #666;
    line-height: 1.8;
}

/* Menu Section */
.menu {
    background: white;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 2rem;
    background: var(--cream);
    color: var(--dark);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-item:hover {
    border-color: var(--accent-color);
    transform: scale(1.02);
    box-shadow: 0 5px 20px var(--shadow);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.menu-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.menu-item p {
    color: #666;
    line-height: 1.6;
}

/* Cats Section */
.cats {
    background: linear-gradient(135deg, #FFF8F0 0%, #F5E6D3 100%);
}

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

.cat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
}

.cat-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.cat-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cat-card:hover .cat-image {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cat-breed {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cat-card p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.gallery-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.gallery-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 30px var(--shadow-dark);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

.map-container {
    margin: 1.5rem auto 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transform: scale(1.02);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-dark);
}

/* Countdown Timer */
.countdown-container {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    text-align: center;
}

.countdown-container h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.countdown {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 70px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--cream);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Media Section */
.social-media-container {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.social-media-container h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.social-media-container p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: white;
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-link.instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(131, 58, 180, 0.4);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.facebook:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000 0%, #69C9D0 100%);
}

.social-link.tiktok:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(105, 201, 208, 0.4);
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link.twitter:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.4);
}

/* Adoption Section */
.adoption {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    padding: 5rem 0;
}

.adoption-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.adoption-info h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.adoption-info > p {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.adoption-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.adoption-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.adoption-feature h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.adoption-feature p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
}

.adoption-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.adoption-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
}

.adoption-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.adoption-card h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.adoption-card p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.adoption-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.adoption-button:hover {
    background: var(--cat);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.adoption-note {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 1.1rem;
    color: var(--cream);
}

.footer-made-by {
    color: var(--cream);
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.footer-copy {
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px var(--shadow);
        transition: left 0.3s ease;
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-grid,
    .menu-grid,
    .cats-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .adoption-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .map-container iframe {
        height: 150px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-link {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .cat-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .countdown-container {
        padding: 1.5rem;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .adoption-card {
        padding: 2rem;
    }

    .adoption-icon {
        font-size: 3rem;
    }

    .map-container iframe {
        height: 120px;
    }

    .social-media-container {
        padding: 1.5rem;
    }

    .social-media-container h3 {
        font-size: 1.5rem;
    }

    .social-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .cat-image {
        height: 200px;
    }
}
