/*
Theme Name: Amazônia Experience
Theme URI: https://amazoniaexperience.com.br
Author: Amazônia Experience
Author URI: https://amazoniaexperience.com.br
Description: Tema profissional para agência de turismo na Amazônia. Totalmente customizável via painel WordPress.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amazonia-experience
Tags: turismo, amazonia, hotel, passeios, custom-colors, custom-logo, custom-menu, featured-images
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ==========================================================================
   CSS Variables - Customizable via Theme Customizer
   ========================================================================== */

:root {
    --verde-selva: #1a5f2a;
    --verde-claro: #2d8a3e;
    --amarelo-sol: #f4a020;
    --marrom-terra: #5c3d2e;
    --bege-areia: #f5f0e8;
    --branco: #ffffff;
    --preto: #1a1a1a;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--preto);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    padding: 1rem 5%;
    transition: background 0.3s ease;
}

.site-header.scrolled {
    background: var(--verde-selva);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.site-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--branco);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.logo-icon {
    font-size: 2rem;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--amarelo-sol);
}

.btn-reservar {
    background: var(--amarelo-sol);
    color: var(--preto) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-reservar:hover {
    background: var(--branco);
    transform: scale(1.05);
}

/* Language Selector */
.lang-selector {
    position: relative;
    margin-left: 1rem;
    flex-shrink: 0;
}

.lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    vertical-align: middle;
    flex-shrink: 0;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    color: var(--branco);
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.lang-toggle:hover,
.lang-selector.open .lang-toggle {
    background: rgba(255,255,255,0.2);
    border-color: var(--amarelo-sol);
}

.lang-toggle span {
    text-transform: uppercase;
}

ul.lang-dropdown {
    display: none !important;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--verde-selva);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    list-style: none;
    margin: 0;
    padding: 0.3rem 0;
    min-width: 110px;
    z-index: 1001;
    flex-direction: column;
    gap: 0;
}

.lang-selector.open ul.lang-dropdown {
    display: flex !important;
}

ul.lang-dropdown li {
    margin: 0;
    border-bottom: none;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    color: var(--branco);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    white-space: nowrap;
}

.lang-dropdown a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--branco);
}

.lang-dropdown a.active {
    color: var(--amarelo-sol);
    background: rgba(255,255,255,0.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--branco);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}

.hero-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--branco);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.hero-dot:hover {
    background: rgba(255,255,255,0.5);
}

.hero-dot.active {
    background: var(--branco);
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--amarelo-sol);
    color: var(--preto);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--branco);
    padding: 1rem 2.5rem;
    border: 2px solid var(--branco);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--branco);
    color: var(--verde-selva);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: var(--branco);
}

/* ==========================================================================
   Section Titles
   ========================================================================== */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--verde-selva);
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title .decorative-line {
    width: 80px;
    height: 4px;
    background: var(--amarelo-sol);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ==========================================================================
   Destaques Section
   ========================================================================== */

.destaques {
    padding: 5rem 5%;
    background: var(--bege-areia);
}

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.destaque-card {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.destaque-card:hover {
    transform: translateY(-10px);
}

.destaque-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.destaque-card h3 {
    font-size: 1.3rem;
    color: var(--verde-selva);
    margin-bottom: 1rem;
}

.destaque-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================================================
   Hotéis de Selva Section
   ========================================================================== */

.hoteis-selva {
    padding: 6rem 5%;
    background: var(--branco);
}

.hoteis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hotel-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transition: all 0.4s;
    background: var(--branco);
}

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

.hotel-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hotel-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.hotel-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--amarelo-sol);
    color: var(--preto);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.hotel-content {
    padding: 2rem;
}

.hotel-content h3 {
    font-size: 1.5rem;
    color: var(--verde-selva);
    margin-bottom: 0.5rem;
}

.hotel-location {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--bege-areia);
    color: var(--verde-selva);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hotel-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--verde-selva);
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}

.btn-ver-mais {
    background: var(--verde-selva);
    color: var(--branco);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
}

.btn-ver-mais:hover {
    background: var(--verde-claro);
    transform: scale(1.05);
}

/* ==========================================================================
   Passeios Section
   ========================================================================== */

.passeios {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--verde-selva) 0%, #0d3015 100%);
    color: var(--branco);
}

.passeios .section-title h2 {
    color: var(--branco);
}

.passeios .section-title p {
    color: rgba(255,255,255,0.8);
}

.passeios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.passeio-card {
    background: var(--branco);
    border-radius: 20px;
    overflow: hidden;
    color: var(--preto);
    transition: all 0.4s;
}

.passeio-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.passeio-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.passeio-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.passeio-duracao {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: var(--branco);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.passeio-content {
    padding: 1.5rem;
}

.passeio-content h3 {
    font-size: 1.3rem;
    color: var(--verde-selva);
    margin-bottom: 0.8rem;
}

.passeio-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.passeio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.passeio-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--verde-selva);
}

.passeio-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: #888;
    display: block;
}

/* ==========================================================================
   Experiências Section
   ========================================================================== */

.experiencias {
    padding: 6rem 5%;
    background: var(--bege-areia);
}

.exp-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.exp-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.exp-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.exp-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--verde-selva);
    margin-bottom: 1.5rem;
}

.exp-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.exp-lista {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.exp-lista li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.exp-lista li::before {
    content: "\2713";
    background: var(--verde-selva);
    color: var(--branco);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Depoimentos Section
   ========================================================================== */

.depoimentos {
    padding: 6rem 5%;
    background: var(--branco);
}

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

.depoimento-card {
    background: var(--bege-areia);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
}

.depoimento-card::before {
    content: "\201C";
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--verde-selva);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.depoimento-texto {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.autor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.autor-info h4 {
    color: var(--verde-selva);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.autor-info p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.estrelas {
    color: var(--amarelo-sol);
    margin-top: 0.3rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: 6rem 5%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--branco);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.cta-section .cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: #0d1f12;
    color: var(--branco);
    padding: 4rem 5% 2rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--amarelo-sol);
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

.footer-section ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--amarelo-sol);
}

.footer-contato {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--amarelo-sol);
    color: var(--preto);
}

.social-links a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.social-links a:hover img {
    filter: brightness(0);
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--amarelo-sol);
}

/* ==========================================================================
   WhatsApp Float Button
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 992px) {
    .exp-container {
        grid-template-columns: 1fr;
    }

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

    .main-navigation ul#primary-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .lang-selector {
        margin-left: auto;
        margin-right: 1rem;
    }

    /* Mobile Menu */
    .main-navigation.toggled ul#primary-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--verde-selva);
        padding: 1rem;
        gap: 0;
    }

    .main-navigation.toggled ul li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-navigation.toggled ul a {
        display: block;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

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

    .hoteis-grid,
    .passeios-grid {
        grid-template-columns: 1fr;
    }

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

    .exp-content h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   WordPress Specific Styles
   ========================================================================== */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

/* Admin Bar Fix */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}
