/**
 * Custom CSS for Ringdo Theme
 */

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    line-height: 1.2;
}

/* Header Styles */
.site-header {
    background-color: #161616;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Navigation */
.main-navigation {
    text-align: center;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-navigation li {
    margin: 0 15px;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #D2AB82;
}

/* Content Area */
.content-area {
    min-height: calc(100vh - 200px);
}


/* Newsletter Form Styles */
#newsletter-email:focus {
    outline: 2px solid #D2AB82;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 24px;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin: 5px 0;
    }
    
    h1 {
        font-size: 36px !important;
    }
    
    h2 {
        font-size: 28px !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.skip-link:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}

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

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

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Hide GoDaddy and other injected ad elements */
#GODADDY_FREEMIUM_AD,
.gd-ad-wrapper,
[data-freemium-ad],
#freemium-ad-13258,
.freemium-ad,
.gd-freemium,
[id*="godaddy"],
[class*="godaddy"],
[id*="office-365"],
[class*="office-365"],
.office365-banner,
.ad-banner,
.top-bar-ad {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}