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

:root {
    --color-blue: #6BA3D8;
    --color-beige: #F5E6D3;
    --color-orange: #FFB366;
    --color-white: #FFFFFF;
    --color-dark: #333333;
    --color-light-gray: #F8F8F8;
    --color-gray: #666666;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(107, 163, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 179, 102, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Header Styles */
header {
    background: var(--color-blue);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--color-orange);
}

.animal-card-icon {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 163, 216, 0.15) 0%, rgba(255, 179, 102, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-blue);
    border: 2px solid rgba(107, 163, 216, 0.3);
    transition: var(--transition);
}

.animal-card:hover .animal-card-icon {
    background: linear-gradient(135deg, rgba(107, 163, 216, 0.25) 0%, rgba(255, 179, 102, 0.25) 100%);
    border-color: var(--color-orange);
    transform: scale(1.1);
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
}

/* Beautiful links throughout the site */
a {
    color: var(--color-blue);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

a:hover {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
}

/* Phone and email links without underline */
a[href^="tel:"],
a[href^="mailto:"] {
    color: var(--color-blue);
    text-decoration: none;
    border-bottom: none;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(107, 163, 216, 0.1);
    transition: var(--transition);
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
    color: var(--color-white);
    background: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(107, 163, 216, 0.3);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--color-orange);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

.mobile-menu-toggle::before {
    content: '☰';
    display: block;
}

.mobile-menu-toggle.active::before {
    content: '✕';
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-beige) 0%, rgba(245, 230, 211, 0.8) 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 1200px;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Animal Icons Grid */
.animal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.animal-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-decoration: none;
    color: var(--color-dark);
}

.animal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.animal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-blue);
}

.animal-card p {
    color: var(--color-gray);
}

/* Content Sections */
.content-section {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    color: var(--color-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--color-orange);
}

.content-section h3 {
    color: var(--color-dark);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
    line-height: 1.4;
}

.content-section h4 {
    color: var(--color-dark);
    font-size: 1.25rem;
    margin: 1.25rem 0 0.75rem 0;
    font-weight: 600;
    line-height: 1.4;
}

.content-section p {
    margin-bottom: 1.25rem;
    text-align: justify;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--color-dark);
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.content-section ul {
    list-style: none;
    position: relative;
}

.content-section ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
    color: var(--color-dark);
}

.content-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-orange);
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.7;
    vertical-align: baseline;
}

.content-section ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--color-dark);
    padding-left: 0;
}

.content-section ol {
    list-style: decimal;
    list-style-position: inside;
    padding-left: 0;
}

.content-section strong {
    color: var(--color-blue);
    font-weight: 600;
}

/* Images */
.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

.content-section img.float-left {
    float: left;
    max-width: 400px;
    margin-right: 2rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.content-section img.float-right {
    float: right;
    max-width: 400px;
    margin-left: 2rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.content-section img.center {
    display: block;
    margin: 2rem auto;
    max-width: 600px;
}

.content-section::after {
    content: "";
    display: table;
    clear: both;
}

/* Form Styles */
.contact-form {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--color-beige);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(107, 163, 216, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    line-height: 1.5;
}

.submit-btn {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-orange) 100%);
    color: var(--color-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 163, 216, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--color-orange);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--color-beige);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-orange);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--color-orange);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background: #ff9933;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--color-blue);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    display: none;
    animation: slideIn 0.3s ease;
}

.notification.show {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        padding-left: 1rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-bottom {
        padding: 2rem 1rem 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--color-blue);
        padding: 5rem 2rem 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: 100vh;
        overflow-y: auto;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    nav ul li a {
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .animal-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .content-section img.float-left,
    .content-section img.float-right {
        float: none;
        display: block;
        max-width: 100%;
        margin: 1.5rem auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 5px;
    }

    .logo {
        padding-left: 1.5rem;
    }

    .hero {
        padding: 2rem 0.5rem;
        margin: 1rem auto;
    }

    .content-section {
        padding: 1rem 0.5rem;
        margin: 1rem auto;
    }

    .contact-form {
        padding: 1rem 0.5rem;
        margin: 1rem auto;
    }

    nav {
        padding: 5rem 0.5rem 2rem;
    }

    .cookie-banner {
        padding: 1rem 0.5rem;
    }

    .content-section ul,
    .content-section ol {
        margin-left: 1rem;
        padding-left: 0.5rem;
    }

    .content-section ul li {
        padding-left: 1.2rem;
    }

    .footer-content {
        padding: 0 1.5rem;
    }

    .footer-bottom {
        padding: 2rem 1.5rem 0;
    }
}

