/* Doggy Day Tours - Main Stylesheet */
/* Color Scheme: White, Yellow (#FFD700), Burgundy (#800020) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header Styles */
header {
    background-color: #800020;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    height: 80px;
    width: auto;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: 2px;
}

.logo-white {
    color: white;
}

.logo-yellow {
    color: #FFD700;
    margin: 0 0.25rem;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

nav ul li a:hover,
nav ul li a.active {
    color: #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #800020 0%, #a52a3a 100%);
    color: white;
    padding: 4rem 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px;
}

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

h1, h2, h3 {
    color: #800020;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

.service-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #FFD700;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-card h3 {
    color: #800020;
    margin-bottom: 1rem;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* About Section - Team Bios */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #800020;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    border: 5px solid #FFD700;
}

.team-member h3 {
    color: #800020;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #800020;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
}

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

.btn {
    background-color: #800020;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.btn:hover {
    background-color: #a52a3a;
}

/* Contact Info */
.contact-info {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid #FFD700;
}

.contact-info h3 {
    color: #800020;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: #800020;
    text-decoration: none;
}

.contact-info a:hover {
    color: #FFD700;
}

/* Privacy Policy */
.privacy-content {
    line-height: 1.8;
}

.privacy-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #800020;
    color: white;
    padding: 3rem 20px 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

/* Meta Box Styles */
.meta-box {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(128, 0, 32, 0.1);
}

.meta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.meta-icon {
    font-size: 1.5rem;
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.meta-value {
    font-size: 1.1rem;
    color: #800020;
    font-weight: bold;
}

.meta-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #FFD700, transparent);
}

/* Casino Specific Styles */
.casino-intro,
.casino-content {
    margin-bottom: 2rem;
}

.casino-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.top-casinos-box {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 3px solid #FFD700;
    box-shadow: 0 5px 20px rgba(128, 0, 32, 0.1);
    margin: 3rem 0;
}

.top-casinos-box h2 {
    text-align: center;
    color: #800020;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.casino-list {
    list-style: none;
    padding: 0;
}

.casino-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: white;
    border-left: 4px solid #FFD700;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.casino-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(128, 0, 32, 0.2);
}

.casino-list a {
    color: #800020;
    text-decoration: none;
    font-weight: bold;
}

.casino-list a:hover {
    color: #FFD700;
}

/* Comparison Table Styles */
.casino-comparison {
    margin: 4rem 0;
}

.table-responsive {
    overflow-x: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #800020 0%, #a52a3a 100%);
    color: white;
}

.comparison-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 3px solid #FFD700;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

.comparison-table tbody tr:hover {
    background-color: #fff9e6;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(128, 0, 32, 0.1);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.25rem;
    vertical-align: middle;
}

.comparison-table td:first-child {
    font-weight: bold;
    color: #800020;
}

.btn-table {
    display: inline-block;
    background-color: #800020;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
}

.btn-table:hover {
    background-color: #a52a3a;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(128, 0, 32, 0.3);
}

.badge-new {
    background-color: #FFD700;
    color: #800020;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .logo-text {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .meta-content {
        gap: 1rem;
    }

    .meta-divider {
        display: none;
    }

    .meta-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

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

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

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .services,
    .team {
        grid-template-columns: 1fr;
    }

    .top-casinos-box h2 {
        font-size: 1.5rem;
    }

    .casino-list li {
        font-size: 0.9rem;
    }

    /* Mobile Stacked Table Layout */
    .table-responsive {
        overflow-x: visible;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr {
        display: block;
        width: 100%;
    }

    .comparison-table tbody tr {
        margin-bottom: 1.5rem;
        border: 2px solid #FFD700;
        border-radius: 10px;
        padding: 1.5rem;
        background: white;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .comparison-table tbody tr:hover {
        transform: none;
        background-color: white;
    }

    .comparison-table td {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        border: none;
        text-align: left;
    }

    .comparison-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #800020;
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .comparison-table td:first-child {
        font-size: 1.2rem;
        color: #800020;
        margin-bottom: 0.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #FFD700;
    }

    .comparison-table td:first-child::before {
        display: none;
    }

    .comparison-table td:last-child {
        padding-top: 1rem;
    }

    .btn-table {
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
    }
}
