/* ====== General Styles ====== */
:root {
    --dark-green: #184926;
    --light-bg: #f5f0e8;
    --gold: #D3AF37;
    --dark-brown: #1a3a2e;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ====== Typography ====== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
}

.hero-title {
    font-family: 'Pinyon Script', cursive;
    font-size: 4rem;
    font-weight: 400;
    color: var(--gold);
    text-align: center;
    line-height: 1;
    font-style: normal;
}

.hero-subtitle {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    font-style: normal;
    line-height: 1;
    font-weight: 400;
}

.highlight-gold {
    color: var(--gold);
    font-family: 'Noto Serif', serif;
    font-style: italic;
}

/* ====== Navigation ====== */
.navbar {
    background-color: transparent !important;
    box-shadow: none;
    padding: 1rem 0;
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border: none !important;
    width: 100%;
}

.navbar.scrolled {
    position: fixed;
    background: rgba(24, 73, 38, 0.90) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-light .nav-link {
    color: var(--gold) !important;
    font-family: 'Noto Sans', sans-serif;
    font-size: 2rem;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--gold) !important;
}

.navbar-light .nav-link:hover {
    color: white !important;
}

.navbar.scrolled .nav-link:hover {
    color: white !important;
}

.navbar-toggler {
    border: none !important;
    padding: 0.25rem 0.5rem;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none !important;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D3AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: background-image 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D3AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6l-18 18'/%3e%3c/svg%3e");
}

.navbar-collapse {
    background: rgba(24, 73, 38, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.navbar-collapse.show {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 60px);
    z-index: 1000;
    overflow-y: auto;
    max-height: 100vh;
    opacity: 1;
}

.navbar-nav {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1rem;
}

.navbar-nav .nav-link {
    margin-left: 0 !important;
    margin: 1rem 0 !important;
    font-size: 2.4rem !important;
    font-family: 'Pinyon Script', cursive !important;
}

.nav-link.text-sans {
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 1rem !important;
}

@media (max-width: 991px) {
    .navbar-brand {
        position: relative;
        z-index: 1001;
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent !important;
        backdrop-filter: none !important;
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
    }

    .navbar-collapse.show {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        width: auto !important;
        z-index: auto !important;
    }

    .navbar-nav {
        flex-direction: row;
        align-items: center;
        padding: 0 !important;
    }

    .navbar-nav .nav-link {
        margin-left: 2rem !important;
        margin: 0 !important;

    }
}

/* ====== Hero Section ====== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-btn {
    display: none;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }

    .hero-carousel {
        height: 90vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.3rem 0.8rem;
    }

    .prev-btn {
        left: 1rem;
    }

    .next-btn {
        right: 1rem;
    }
}

/* ====== Base Header ====== */
.base-header {
    position: relative;
    width: 100%;
    max-height: 400px;
    background-color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.base-header .hero-carousel {
    height: 400px;
}

.base-header .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.9;
}

.base-header .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

@media (max-width: 768px) {
    .base-header {
        max-height: 400px;
    }

    .base-header .hero-carousel {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .base-header {
        max-height: 300px;
    }

    .base-header .hero-carousel {
        height: 300px;
    }
}
/* ====== Iniciala ====== */
.iniciala {
    float: left;
    display: block;
    font-size: 52px;
    height: 45px;
    line-height: 38px;
    min-width: 55px;
    margin: 5px -10px 0 0;
    font-family: 'Noto Serif', serif;
}

/* ====== Breeder Card ====== */
.breeder-card {
    text-align: center;
    margin-top: 2rem;
}

.breeder-card-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.breeder-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.breeder-card-name {
    font-family: 'Noto Serif', serif;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.breeder-card-position {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9375rem;
    color: var(--gold);
    margin: 0;
}
/* ====== Intro Section ====== */
.intro-section {
    background-color: white;
    padding: 3rem 0;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #184926;
    text-transform: uppercase;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    margin-bottom: 1rem;
}

.intro-title {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.5rem;
    color: #D3AF37;
    font-style: normal;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.intro-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ====== Breeding Section ====== */
.breeding-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
    text-align: center;
}

.breeding-title {
    font-family: 'Noto Serif', serif;
    font-size: 3rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.breeding-subtitle {
    font-family: 'Noto Serif', serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.gold-symbol {
    color: var(--gold);
    margin: 0 1rem;
    font-size: 1.2rem;
}

.breeding-divider {
    border: none;
    border-bottom: 2px solid var(--text-light);
    margin: 0 15%;
    opacity: 0.3;
}

/* ====== Marquee Section ====== */
.marquee-section {
    background: transparent;
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: transparent;
}

.marquee-content {
    display: flex;
    animation: marquee 15s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 3rem;
    white-space: nowrap;
    flex-shrink: 0;
    justify-content: center;
}

.marquee-text {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 400;
    margin: 0;
}

.marquee-icon {
    max-width: 50px;
    height: auto;
    display: block;
    margin: 0 1.5rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.marquee-reverse {
    animation: marquee-reverse 15s linear infinite !important;
}

@media (max-width: 768px) {
    .marquee-text {
        font-size: 2.8rem;
    }

    .marquee-icon {
        max-width: 40px;
    }

    .marquee-item {
        padding: 0;
        gap: 1rem;
    }
}
.diamond-bg {
    background-color: var(--light-bg);
    background-image: url('../images/diamonds.png');
    background-repeat: repeat;
    background-size: 200px 200px;
    background-attachment: scroll;
}
/* ====== Dogs Section ====== */
.dogs-section {
    background-color: white;
    padding: 4rem 0;
}

.section-title {
    font-family: 'Noto Serif', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-style: italic;
    text-align: left;
    margin-bottom: 2rem;
    font-weight: 400;
}

.dog-card {
    background: white;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dog-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.dog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.dog-card:hover .dog-image {
    transform: scale(1.05);
}

.dog-name {
    font-family: 'Noto Serif', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    padding: 1rem 1rem 0.5rem 1rem;
    margin: 0;
    font-weight: 600;
}

.dog-breed {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0 1rem 1rem 1rem;
    margin: 0;
    text-align: center;
}

/* ====== VRH Section ====== */
.vrh-section {
    padding: 4rem 0;
}

.vrh-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
}

.vrh-card:hover {
    transform: translateY(-3px);
}

.vrh-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    display: block;
    transition: transform 0.3s ease;
}

.vrh-card:hover .vrh-image {
    transform: scale(1.05);
}

.vrh-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.vrh-title {
    font-family: 'Noto Serif', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.vrh-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding: 0 1.5rem;
}

.vrh-card .btn-custom {
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.btn-custom {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.btn-custom:hover {
    background-color: #c49460;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.btn-custom:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(211, 175, 55, 0.3);
}

/* ====== Contact Section ====== */
.contact-section {
    padding: 4rem 0;
}

.logo-img {
    max-width: 100px;
    height: auto;
}
.logo-body {
    max-width: 300px;
    height: auto;
}

.contact-title {
    font-family: 'Pinyon Script', cursive;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-green);
    margin-bottom: 2rem;
}

.contact-subtitle {
    font-family: 'Pinyon Script', cursive;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 120%;
}

.contact-description {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--dark-green);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-info {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text-dark);
}

.footer-info p {
    margin: 0.3rem 0;
}

.footer-info strong {
    font-weight: 600;
}

/* ====== Footer ====== */
.footer {
    background-color: white;
    padding: 3rem 0;
}

.footer-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--dark-green);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.8;
}

.footer a {
    display: block;
    font-family: 'Noto Serif', serif;
    color: var(--dark-green);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    font-weight: 600;
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--dark-green);
    transition: width 0.6s ease;
}

.footer a:hover {
    color: var(--text-dark);
}

.footer a:hover::after {
    width: 80px;
    background-color: var(--text-dark);
}

.footer-links-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.footer-links-container a {
    flex: 0 1 auto;
    padding: 0.5rem 1rem;
    display: inline-block;
}

.partner-logo {
    max-height: 160px;
    height: auto;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.footer-links-container a:hover .partner-logo {
    opacity: 0.7;
}

.footer-links-container a::after {
    display: none;
}

.footer-tagline {
    font-family: 'Pinyon Script', cursive;
    color: var(--dark-green);
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    color: var(--gold);
    text-decoration: none;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.social-icon:hover {
    background-color: var(--gold);
    color: white;
}

.footer-copyright {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}
.text-sans{
    font-family: 'Noto Sans', sans-serif !important;
}

/* ====== Article Section ====== */
.article-section {
    padding: 4rem 0;
}

.article-content {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 4px;
}

.article-title {
    font-family: 'Noto Serif', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.article-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-subtitle {
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 2rem 0 1.5rem 0;
    font-weight: 600;
}

/* ====== Gallery ====== */
.gallery {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.certificate-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.certificate-item {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.certificate-item:hover {
    transform: translateY(-2px);
}

.certificate-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.certificate-item:hover .certificate-img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ====== Litter Table ====== */
.litter-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.litter-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.litter-table tr:last-child {
    border-bottom: none;
}

.table-label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    font-weight: 600;
    width: 40%;
    background-color: #f9f9f9;
}

.table-value {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 0.75rem 1rem;
}

/* ====== Video Container ====== */
.video-container {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.article-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* ====== Article Blockquote ====== */
.article-blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-left: 4px solid var(--gold);
    background-color: rgba(211, 175, 55, 0.08);
    border-radius: 0 4px 4px 0;
}

.blockquote-text {
    font-family: 'Noto Serif', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.8;
}

.blockquote-footer {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 400;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(211, 175, 55, 0.3);
    display: inline-block;
}

@media (max-width: 768px) {
    .article-blockquote {
        margin: 1.5rem 0;
        padding: 1rem 1rem 1rem 1.5rem;
        border-left-width: 3px;
    }

    .blockquote-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-img {
        height: 150px;
    }

    .article-content {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-subtitle {
        font-size: 1.25rem;
    }

    .table-label {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    .table-value {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-img {
        height: 200px;
    }

    .article-content {
        padding: 1rem;
    }

    .article-title {
        font-size: 1.25rem;
    }

    .article-text {
        font-size: 0.95rem;
    }
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
    .intro-title {
        font-size: 2rem;
    }

    .breeding-title {
        font-size: 2.2rem;
    }

    .breeding-subtitle {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gold-symbol {
        margin: 0 0.5rem;
    }

    .breeding-divider {
        margin: 0 5%;
    }

    .vrh-card {
        margin-bottom: 1rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.8rem;
    }

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .intro-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-title {
        font-size: 2rem;
    }
}

/* ====== Utility Classes ====== */
.text-gold {
    color: var(--gold);
}

.bg-dark-green {
    background-color: var(--dark-green);
}

.bg-light {
    background-color: var(--light-bg);
}

/* ====== Button Styles ====== */
.btn-gold {
    background-color: var(--gold) !important;
    color: var(--dark-green) !important;
    border: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #C19B1B !important;
    color: var(--dark-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 175, 55, 0.3);
}

/* ====== Dog Card Link ====== */
.dog-card-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.dog-card-link:hover {
    transform: translateY(-5px);
    text-decoration: none !important;
}

/* ====== Image Utilities ====== */
.img-max-50 {
    max-width: 50%;
    height: auto;
    border-radius: 12px;
}