/*!
 * Theme Name: 		   Natura Ovis
 * Text Domain: 	   naturaovis
 * Version:            1.0.0
 * Tested up to:       1.0.0
 * Requires at least:  5.6
 * Requires PHP:       8.3
 * Author:             Adam Pommier
 * Author URI:         https://fr.linkedin.com/in/adampommier
 * Theme URI:          https://fr.linkedin.com/in/adampommier
 * Description:        Site web pour l'entreprise Natura Ovis
 * Tags:                
 *
 * License: 
 * License URI: 
 *
 *
 * DO NOT ADD YOUR CSS TO THIS FILE - IT WILL BE LOST
 * To add your own CSS, use a child theme
 *
 * CSS file is in "assets/css"
 */

 /* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    max-width: 2200px;
}

html {
    scroll-behavior: smooth;
}

/* Headers */
h1, h2, h3 {
    text-align: left;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}
h2, h3 {
    font-weight: 600 !important;
}

/* Paragraphs and Links */
p {
    font-weight: 400;
    text-align: left;
}

a {
    text-decoration: none;
}

/* Buttons */
.btn, .btn-secondary, .category-name {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: background-color 0.4s ease;
    /* text-transform: uppercase; */
}

.btn {
    font-weight: 600;
    max-width: auto;
    padding: 8px 20px;
    background-color: transparent;
    color: #001727;
    border: solid 2px #31660A;
    margin-top: 3.25vw;
    transition: background 0.4 ease-in;
}

.btn-secondary {
    color: #f6fbff;
    border: solid 2px #CD9F5C;
    background-color: transparent;
}

.link {
    color: #001727;
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.4vw;
}

/* Hover Effects */
.btn:hover {
    background-color: #31660A;
    color: #fff;
    transition: background 0.4 ease-out;
}

.btn-secondary:hover {
    background-color: #CD9F5C;
    color: #001727;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
    text-decoration-color: #CD9F5C;
}

.category-name {
    color: #CD9F5C;
    font-weight: 500;
    border: solid 2px #CD9F5C;
    padding: 8px 20px;
    margin-bottom: 10px;
    max-width: 110px;
}

/* Section */
.section {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    color: #001727;
    padding: 55px 6vw;
    box-sizing: border-box;
}

/* Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Styles */
@media screen and (max-width: 1069px) {
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 26px; }
    p { font-size: 18px; }
    .btn { width: auto; font-size: 20px; }
    .link { font-size: 20px; }
    .section { padding: 40px 0; }
}

@media screen and (min-width: 1070px) {
    h1 { font-size: 3vw; }
    h2 { font-size: 2.5vw; }
    h3 { font-size: 2vw; }
    p { font-size: 1.3vw; }
    .btn { font-size: 1.3vw; max-width: 170px; }
    .section { padding: 40px 9.905vw; }
}

@media screen and (min-width: 1400px) {
    .btn { max-width: 190px; }
}

@media screen and (min-width: 1500px) {
    h1 { font-size: 54px; }
    h2 { font-size: 46px; }
    h3 { font-size: 36px; }
    p { font-size: 22px; }
    .btn { font-size: 22px; margin-top: 40px; }
}

@media screen and (min-width: 2200px) {
    body { margin: 0 auto; }
    .link { font-size: 24px; }
}

