/*
Theme Name: Ehitusload24
Theme URI: https://ehitusload24.ee
Author: Your Name
Author URI: https://ehitusload24.ee
Description: Custom WordPress theme for Ehitusload24
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ehitusload24
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&display=swap');

/* Import Tailwind CSS */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Font */
@font-face {
    font-family: 'Oyko-Regular';
    src: url('assets/fonts/oyko-regular.woff2') format('woff2'),
         url('assets/fonts/oyko-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
body {
    font-family: 'Exo 2', sans-serif;
    @apply bg-gray-50 text-gray-800;
}


/* Navigation */
.main-nav a {
    @apply text-gray-700 hover:text-custom-yellow transition-colors px-4 py-2;
}

/* Restored Utility Classes */
.ml-1 {
    margin-left: 0.25rem;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.hover\:text-green-800:hover {
    --tw-text-opacity: 1;
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}

/* Buttons */
.btn {
    @apply font-semibold px-6 py-2   transition-colors;
}

.btn-primary {
    @apply bg-[var(--color-primary)] text-gray-900 hover:bg-yellow-400;
}

.btn-outline {
    @apply border-2 border-custom-yellow text-custom-yellow hover:bg-[var(--color-primary)] hover:text-gray-900;
}

/* Sections */
section {
    @apply py-16 md:py-24;
}

/* Container */
.container {
    @apply max-w-7xl mx-auto px-4;
}
