/* King Campbell - Royal Styles */
:root {
    --royal-blue: #002366;
    --gold: #D4AF37;
    --parchment: #f4f1ea;
    --knight-grey: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: var(--parchment);
    color: var(--knight-grey);
    line-height: 1.6;
}

.maintenance-banner {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.maintenance-banner span {
    margin-right: 8px;
}

header {
    background-color: var(--royal-blue);
    color: white;
    padding: 2rem;
    text-align: center;
    border-bottom: 5px solid var(--gold);
}

.crown-logo {
    font-size: 3rem;
    margin: 0;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #001a4d;
    padding: 10px;
}

nav a {
    color: var(--gold);
    text-decoration: none;
    margin: 5px 15px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav a:hover {
    color: white;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0,35,102,0.8), rgba(0,35,102,0.8)), url('https://images.unsplash.com/photo-1589923188900-85dae523342b?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-small {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0,35,102,0.9), rgba(0,35,102,0.9));
    color: white;
}

.btn-royal {
    background-color: var(--gold);
    color: var(--royal-blue);
    padding: 15px 30px;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-royal:hover {
    background-color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    padding: 12px 25px;
    border: 2px solid var(--gold);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--royal-blue);
}

.section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.section-wide {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

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

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-top: 4px solid var(--gold);
}

.card-large {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--gold);
    text-align: left;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--royal-blue);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: var(--royal-blue);
    color: white;
    font-size: 0.9rem;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

iframe {
    width: 100%;
    height: 800px;
    border: none;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item-content {
    padding: 15px;
}

/* Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 3px solid var(--gold);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--gold);
    color: var(--royal-blue);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--parchment);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--royal-blue);
}

.pricing-price span {
    font-size: 1rem;
    color: var(--knight-grey);
}

.pricing-features {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--parchment);
}

.pricing-features li::before {
    content: "✓ ";
    color: var(--gold);
    font-weight: bold;
}

/* FAQ Styles */
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--parchment);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--knight-grey);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }
    
    nav a {
        margin: 8px 0;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}
